上一页 1 2 3 4 5 6 7 8 9 ··· 19 下一页
摘要: http://stackoverflow.com/questions/12914788/uilinebreakmodewordwrap-is-deprecated 阅读全文
posted @ 2013-10-15 16:07 时光独白 阅读(484) 评论(0) 推荐(0) 编辑
摘要: http://stackoverflow.com/questions/8460340/interface-type-cannot-be-statically-allocated 阅读全文
posted @ 2013-10-15 11:45 时光独白 阅读(655) 评论(0) 推荐(0) 编辑
摘要: 1. NSString转换成NSDataNSString* str = @"teststring";NSData* data = [str dataUsingEncoding:NSUTF8StringEncoding];2. NSData转换成NSStringNSString *aString = [[NSString alloc] initWithData:adataencoding:NSUTF8StringEncoding];3. JSON格式的NSString转换成NSMutableDictionaryNSError *err = nil;NSArray *arr = 阅读全文
posted @ 2013-10-15 11:44 时光独白 阅读(567) 评论(0) 推荐(0) 编辑
摘要: http://blog.sina.com.cn/s/blog_71715bf801016d38.html 阅读全文
posted @ 2013-10-14 19:03 时光独白 阅读(354) 评论(0) 推荐(0) 编辑
摘要: http://stackoverflow.com/questions/10296138/xcode-debug-shortcuts 阅读全文
posted @ 2013-10-14 18:48 时光独白 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 网上搜到一些答案,但都没解决,后来发现是因为build phases中忘记添加对应的.m文件了 :) 阅读全文
posted @ 2013-10-14 15:38 时光独白 阅读(148) 评论(0) 推荐(0) 编辑
摘要: http://stackoverflow.com/questions/12447725/afnetworking-and-post-request产生该错误的原因是AFNetworking默认不接收该类型,根据错误信息里面的提示,添加代码[AFJSONRequestOperation addAcceptableContentTypes:[NSSet setWithObject:@"text/html"]];text/html根据自己的错误写 阅读全文
posted @ 2013-10-14 14:55 时光独白 阅读(610) 评论(0) 推荐(1) 编辑
摘要: 原文地址:http://blog.sina.com.cn/s/blog_71715bf80101a9q6.htmlARC是什么ARC是iOS 5推出的新功能,全称叫 ARC(Automatic Reference Counting)。简单地说,就是代码中自动加入了retain/release,原先需要手动添加的用来处理内存管理的引用计数的代码可以自动地由编译器完成了。该机制在 iOS 5/ Mac OS X 10.7 开始导入,利用 Xcode4.2 可以使用该机制。简单地理解ARC,就是通过指定的语法,让编译器(LLVM 3.0)在编译代码时,自动生成实例的引用计数管理部分代码。有一点,AR 阅读全文
posted @ 2013-10-12 18:28 时光独白 阅读(192) 评论(0) 推荐(0) 编辑
摘要: http://stackoverflow.com/questions/12451084/afnetworking-in-arc-gives-compiler-warnings-after-adding-fno-obc-arc 阅读全文
posted @ 2013-10-12 18:27 时光独白 阅读(381) 评论(0) 推荐(0) 编辑
摘要: http://stackoverflow.com/questions/10119239/adding-reachability-class-fails-when-i-am-trying-to-build 阅读全文
posted @ 2013-10-12 11:00 时光独白 阅读(519) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 19 下一页