
iOS
行走在GIS里的蜗牛
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
iOS 9 地图定位崩溃
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: !stayUp || CLClientIsBackgroundable(internal->fClient)'解决方法:1.在pl原创 2016-09-26 08:20:48 · 2100 阅读 · 0 评论 -
cocoapods安装
cocoapods安装1、删除国外的源(服务器在国外,下载非常之慢)gem sources--remove https://rubygems.org/2、添加国内的源gem sources -a https://ruby.taobao.org/ 可以查询一下当前源 gem sources -l注:安装cocoapods前最好升级一下gem(以后出现问题,尝试这个原创 2016-10-08 15:06:35 · 1121 阅读 · 0 评论 -
Swift中Selector的用法
2.2 之前,使用字符串作为方法名称//无参数btn.addTarget(self, action: Selector("buttonPress") , forControlEvents: .TouchUpInside)//有参数btn.addTarget(self, action: Selector("buttonPress:") , forControlEvents: .Tou转载 2017-02-24 10:57:08 · 2904 阅读 · 0 评论