摘要: NSMutableAttributedString * sstring = [[NSMutableAttributedString alloc]initWithString:string];[sstring addAttribute:NSForegroundColorAttributeName va... 阅读全文
posted @ 2016-01-25 15:30 二号猎人 阅读(259) 评论(0) 推荐(0)
摘要: 没有存储任何内存地址的指针就称为空指针(NULL指针)野指针是指向"垃圾"内存(不可用内存)的指针。野指针是非常危险的比如说 定义了一个Person 的类,Person类有一个 - (void)setName方法Person * per = [[Person alloc]init];[per set... 阅读全文
posted @ 2016-01-25 10:09 二号猎人 阅读(1042) 评论(0) 推荐(0)