进制转换

参考链接

// Int 转 NSData
- (NSData *) setId:(int)Id {
//用4个字节接收
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];
}

  • 测试代码1

#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个字节接收
    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

  • 效果图1:
进制转换_第1张图片
  • 测试代码2

#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个字节接收
    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

  • 效果图2:
进制转换_第2张图片

你可能感兴趣的:(进制转换)