摘要:
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"Using NSAttributed String"]; [str addAttribute:NSForegroundColorA 阅读全文
摘要:
首先引入库:AVFoundation.framework 话不多说,直接贴上代码 1 #import "ViewController.h" 2 3 #import <AVFoundation/AVFoundation.h> 4 5 static const char *kScanQRCodeQueu 阅读全文
摘要:
首先建一个model类保存电话本信息 .h里面 { NSInteger sectionNumber; NSInteger recordID; NSString *name; NSString *email; NSString *tel; } @property NSInteger sectionNu 阅读全文
摘要:
首先引入头文件: #import "sys/utsname.h" 代码实现: - (void)viewDidLoad { [super viewDidLoad]; struct utsname systemInfo; uname(&systemInfo); NSString *deviceStrin 阅读全文