02 2017 档案

摘要:self.textField.autocorrectionType = UITextAutocorrectionTypeNo; self.textField.autocorrectionType = UITextAutocorrectionTypeNo; 阅读全文
posted @ 2017-02-27 11:32 xuanInitial 阅读(1040) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2017-02-10 09:50 xuanInitial
摘要:遇到一个题 NSLog(@"1"); dispatch_async(dispatch_get_main_queue(), ^{ NSLog(@"2"); }); NSLog(@"3"); 打印结果是 132 把async 换成sync 打印结果是 1 蹦了(线程死锁) 思考: dispatch_as 阅读全文
posted @ 2017-02-08 12:05 xuanInitial 阅读(948) 评论(0) 推荐(0)
摘要:iTerm cd 根目录下面 find . "(" -name "*.m" -or -name "*.mm" -or -name "*.cpp" -or -name "*.h" -or -name "*.rss" ")" -print | xargs wc -l 阅读全文
posted @ 2017-02-03 17:10 xuanInitial 阅读(116) 评论(0) 推荐(0)