iOS
文章平均质量分 57
大阳传奇
调试的错误就是编程给你最好的东西,因为在每个错误上面都标志着前进的一步。
展开
-
How to control the flash light(iOS platform)
Thesedays, I need to add a function to my iOS project. I need to add a function that we users tou原创 2014-11-13 05:34:21 · 810 阅读 · 0 评论 -
How to share text to Message in the app you are building(iOS platform)
I find it is relatively easy to share text to message and mail(build-in app on ios).No need to use UI原创 2014-11-16 12:55:19 · 539 阅读 · 0 评论 -
在ViewController之间传递数据的方法【iOS】
在ViewController之间传递数据的方法有不少,博主这里总结两种最常用的方法给大家:我们假设有 视图控制器A 和 视图控制器B,其中我们设视图控制器B 是由 视图控制器A通过Navigation controller Push过去的,也就是说视图控制器B是视图控制器A的子视图控制器。下面我们就分别通过 A->B 和 B->A传递数据说明两种在视图控制器之间传递数据的方法。1原创 2015-01-10 00:19:00 · 2291 阅读 · 0 评论 -
【iOS开发】解决iOS 8无法调用GPS定位信息的问题
近些天有些朋友向我询问了iOS 8无法调用定位信息,打断点后发现按照之前的开发流程操作,根本无法进入-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations的代理方法。查询相关文档后发现:iOS 8需要我们在两处进行修改才能使用位置信息。首先,打开项原创 2015-01-16 08:21:41 · 622 阅读 · 1 评论