摘要:
test.png (像素 20*20) test@2x.png(像素40*40) test@3x.png(像素 60*60) UIImage *image = [UIImageimageNamed:@"test.png"]; image.size输出大小为(20,20); UIImage *imag 阅读全文
摘要:
项目中有较多的多种蓝牙外设的对接 遇到的数据传输比较多 打算从使用框架、模块到传输协议一个系列记录一下 先记录一些数据传输时常用到的转换方式吧 后面再补充 1、整形转换成两个字节 int value = 100; unsigned char byte1 = (value & 0xff00)>>8; 阅读全文
摘要:
最近项目中要用到socket通讯,由于涉及到组包问题,所以需要数据类型之间的来回转换,现在分享出来 如果想要请教Socket的问题请留言,我会随时回答的 1. int类型转16进制hexstring //int 转16进制 - (NSString *)hexFromInt:(NSInteger)va 阅读全文
摘要:
本文来自 codeday ,作者 codeday 如何将UIColor对象转换为uint32_t值.请让我知道是否有人知道吗? 这是代码: const CGFloat *components = CGColorGetComponents([UIColor redColor].CGColor); CG 阅读全文