大熊猫猪·侯佩原创或翻译作品.欢迎转载,转载请注明出处.
如果觉得写的不好请多提意见,如果觉得不错请多多支持点赞.谢谢! hopy ;)
原来的代码一直在Xcode6.4上和iOS 8.4上运行,没有什么问题.但是在转至Xcode7.2上在iOS9.2上运行后,以下方法中出现错误://执行一个可变方法
-(id)invokeSelectorNamed:(NSString *)selectorN...
分类:
移动开发 时间:
2016-01-04 10:20:43
阅读次数:
263
转载自: http://www.cnblogs.com/ludashi/p/4867511.html Spotlight在iOS9上做了一些新的改进, 也就是开放了一些新的API, 通过Core Spotlight Framework你可以在你的app中集成Spotlight。集成Spotligh....
分类:
移动开发 时间:
2016-01-03 00:34:54
阅读次数:
253
原文:http://www.cnblogs.com/jgCho/archive/2015/11/13/4961435.html1.Spotloight是什么? Spotlight在iOS9上做了一些新的改进, 也就是开放了一些新的API, 通过Core Spotlight Framework你可以....
分类:
移动开发 时间:
2016-01-03 00:22:47
阅读次数:
447
iOS9 开始苹果将HTTP全改为HTTPS了,所以出现网络请求失败问题,解决办法:1、改回HTTP: 在info.plist文件中添加一个Key:NSAppTransportSecurity(字典类型),然后给它添加一个Key:NSAllowsArbitraryLoads(Boolean...
分类:
移动开发 时间:
2016-01-02 18:25:55
阅读次数:
164
iOS9.0SDK在编译的时候,默认所有从NSURLConnection、CFURL和NSURLSession发出的http请求,都改为https请求。由于AFNetworking版本底层是用了NSURLConnection,所以使用AFNetworking的app都将受到影响。对于这个问题的解决办...
分类:
移动开发 时间:
2015-12-29 14:16:38
阅读次数:
624
路径:Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport解决办法:1>看看哪个朋友的Xcode是7.2的,让他给你发一下这个文件就可以了2>升级Xcode将这个文件夹拖到xcode对应位置,运行程序就可以跑在手...
分类:
移动开发 时间:
2015-12-28 20:20:23
阅读次数:
352
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ //取出模型 CarGroup * group = self.dataArray[indexPath....
分类:
移动开发 时间:
2015-12-28 15:42:59
阅读次数:
211
App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app'...
分类:
移动开发 时间:
2015-12-28 14:12:35
阅读次数:
163
只有iOS9和iPhone6 plus模拟器上TableView分割线不会显示,后来终于找到了原因:由于iPhone6 plus的分辨率较高,开发的时候同常都使用command + 3 或者 command + 4 缩小模拟器显示,这个时候就相当于把plus的分辨率压缩了所以我们会看不到分割线,解决...
分类:
移动开发 时间:
2015-12-28 10:27:28
阅读次数:
289
Go to Build Phases >Link Binary with Librairies > + > Add otherOnce in the file selection window do “CMD”+Shift+G (Go to folder) and type /usr/lib/Fro...
分类:
移动开发 时间:
2015-12-28 09:06:23
阅读次数:
667