//Integer to NSData +(NSData *) IntToNSData:(NSInteger)data { Byte *byteData = (Byte*)malloc(4); byteData[3] = data & 0xff; byteData[2] ...
確定! 回上一頁