參考鏈接
// Int 轉(zhuǎn) NSData
- (NSData *) setId:(int)Id {
//用4個(gè)字節(jié)接收
Byte bytes[4];
bytes[0] = (Byte)(Id>>24);
bytes[1] = (Byte)(Id>>16);
bytes[2] = (Byte)(Id>>8);
bytes[3] = (Byte)(Id);
NSData *data = [NSData dataWithBytes:bytes length:4];
}
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
NSData *data = [self setId:17052];
NSLog(@"data = %@", data);
}
- (NSData *) setId:(int)Id {
//用4個(gè)字節(jié)接收
Byte bytes[4];
bytes[0] = (Byte)(Id>>24);
bytes[1] = (Byte)(Id>>16);
bytes[2] = (Byte)(Id>>8);
bytes[3] = (Byte)(Id);
NSData *data = [NSData dataWithBytes:bytes length:4];
return data;
}
@end
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
NSData *data = [self setId:17052];
NSLog(@"data = %@", data);
}
- (NSData *) setId:(int)Id {
//用4個(gè)字節(jié)接收
Byte bytes[4];
bytes[3] = (Byte)(Id>>24);
bytes[2] = (Byte)(Id>>16);
bytes[1] = (Byte)(Id>>8);
bytes[0] = (Byte)(Id);
NSData *data = [NSData dataWithBytes:bytes length:4];
return data;
}
@end
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者