iOS学习
慢慢变富的程序员
活到老,学到老
展开
-
IOS开发之----Xcode非ARC项目中设置部分文件ARC支持
文章来源:http://blog.sina.com.cn/s/blog_71715bf80101a9q6.htmlARC是什么 ARC是iOS 5推出的新功能,全称叫 ARC(Automatic Reference Counting)。简单地说,就是代码中自动加入了retain/release,原先需要手动添加的用来处理内存管理的引用计数的代码可以自动地由编译器转载 2015-03-25 14:02:44 · 314 阅读 · 0 评论 -
Mac 锁屏的快捷键是什么?
首先:开启进入睡眠或开始屏幕保护程序后要求输入密码,在系统偏好设置 – 安全性与隐私。 方法一: 1、Finder – 应用程序 – 实用工具 – 钥匙串访问,或者点击 Mac 屏幕右上角的放大镜按钮 Spotlight 搜索“钥匙串”; 2、点击 Mac 顶部菜单栏的“钥匙串访问”,选择“偏好设置”; 3、勾选第一项“在菜单栏中显示钥匙串状态”; 4、Mac 顶部菜单栏会多出转载 2015-04-05 22:34:36 · 2166 阅读 · 0 评论 -
Xcode自动注释插件
新开的项目需要先开发iOS版本,所以又把好久没写的iOS捡起来了,之前都是手动注释,最近是越来越懒了,所以在网上找了一个自动注释的插件,啊哈,其实有时候还真的挺怀念用Eclipse的时候,不过不用羡慕了,简单地配置一下就很方便了。这里使用的是VVDocumenter-Xcode,地址是:https://github.com/onevcat/VVDocumenter-Xcode,下载压缩包,转载 2015-04-16 22:05:48 · 321 阅读 · 0 评论 -
ios地图定位学习
官网的教程,第一步:The value for the UIRequiredDeviceCapabilities is an array of strings indicating the features that your app requires. Two strings are relevant to location services:Include the location原创 2015-05-04 22:22:56 · 78240 阅读 · 0 评论 -
ios地图定位学习
官网的教程,第一步:The value for the UIRequiredDeviceCapabilities is an array of strings indicating the features that your app requires. Two strings are relevant to location services:Include the location原创 2015-05-04 22:30:09 · 64991 阅读 · 0 评论 -
CocoaPods 0.35.0版本, 出现循环依赖的解决办法
Cocoapods目前最新的正式版本是0.35.0,如果升级到这个版本,并且在project中使用XMPPFramework,在pod install之后会出现如下循环依赖的问题There is a circular dependency between XMPPFramework/Core and XMPPFramework/Authentication解决方案,是要么放弃使转载 2015-05-05 16:45:14 · 604 阅读 · 0 评论 -
typedef struct vs. Object - Benefits
How many items like this you plan to create? - If the answer is "millions", struct wins; if the answer is "fifty eight", object wins.Do you need to define methods on it? - If the answer is "yes", ob翻译 2015-05-21 14:09:03 · 321 阅读 · 0 评论 -
iOS 10.3 UILabel设置的中划线失效问题
iOS10.3更新后,商城APP这样的UI:原价 “¥500 ” 类似Label设置的中划线突然失效了。这可能是苹果系统的一个bug。根本原因:UILabel上的文字只要包含有“中文”,富文本字符串的中划线就会失效,我们可通过以下两种方式解决。第一种方式:人民币符号“¥”和“¥”,使用前面一个即可。NSString *market = [NSString stringWithFormat:@"¥%@原创 2017-04-29 16:15:22 · 1138 阅读 · 0 评论 -
阿里云服务器如何设置IPV6通过appstore的审核
文章来源:http://www.cnblogs.com/vijayfly/p/6612771.html苹果上架要求:要求支持IPV6only(因为阿里云主机没有IPV6only)确认IPV6是否开启:方式1:使用ifconfig查看自己的IP地址是否含有IPv6地址。方式2.查看服务监听的IP中是否有IPv6格式的地址。(netstat -tul转载 2017-07-04 08:41:24 · 804 阅读 · 0 评论