OC
Lost_the_wind
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
OC 字符串使用
1、创建常量字符串NSString *astring = @"This is a String!"; 2、创建空字符串,再给予赋值NSString *astring = [[NSString alloc] init]; astring = @"This is a String!"; [astring release]; NSLog(@"astring:%@",astr...转载 2018-11-19 10:36:00 · 559 阅读 · 0 评论 -
网络请求报错 code = 1002 处理
有时候网络请求会异常,比如报错:NSURLConnection finished with error - code -1002Response failed, error buffer: unsupported URL 处理方法:iOS 8 要用utf8转码:urlString = [urlString stringByAddingPercentEscapesUsingE...翻译 2018-12-01 13:30:25 · 6275 阅读 · 0 评论
分享