摘要: Project->Info->Configurations 补充问题:最近安装cocoapods 报错:sudo gem install -n /usr/local/bin cocoapods 解决方案:sudo gem install -n /usr/local/bin cocoapods 阅读全文
posted @ 2015-10-27 11:02 七夜i 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 1,显示方法:在“终端”输入命令defaultswritecom.apple.finderAppleShowAllFilesTRUEkillallFinder重启Finder,系统隐藏的文件都显示出来了。2,隐藏方法:在“终端”输入命令defaultswritecom.apple.finderApp... 阅读全文
posted @ 2015-10-20 11:07 七夜i 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 操作步骤: 打开“终端”(应用程序-》实用工具),输入以下两条命令: defaults write com.apple.finder _FXShowPosixPathInTitle -bool TRUE;killall Finder 你看完整的路径地址出来了吧。 如何恢复默认状态呢? 打开... 阅读全文
posted @ 2015-10-20 10:48 七夜i 阅读(405) 评论(0) 推荐(0) 编辑
摘要: iOS7中用以下方法 CGSize 替代过时的iOS6中的- (CGSize)sizeWithFont:(UIFont *)font 方法 // iOS7_API_根据文字 字数动态确定Label宽高 // 设置Label的字体 HelveticaNeue Courier UIFont *fnt = 阅读全文
posted @ 2015-10-19 13:14 七夜i 阅读(312) 评论(0) 推荐(1) 编辑
摘要: 编译完xx.m以后,截取部分,如下: 阅读全文
posted @ 2015-10-13 13:32 七夜i 阅读(823) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.cnblogs.com/pure/archive/2013/03/31/2977420.htmlGrand Central Dispatch (GCD)是Apple开发的一个多核编程的解决方法。dispatch queue分成以下三种:1)运行在主线程的Main queu... 阅读全文
posted @ 2015-10-13 13:31 七夜i 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 1.判断字符串开头 或 结尾测试字符串是否以aString开始- (BOOL)hasPrefix:(NSString *)aString;测试字符串是否以aString结尾- (BOOL)hasSuffix:(NSString *)aString;2.有子类的对象AClass 在 获取 单例 的时候... 阅读全文
posted @ 2015-10-12 16:08 七夜i 阅读(319) 评论(0) 推荐(0) 编辑
摘要: 原文:http://my.oschina.net/vimfung/blog/494687iOS9中新增App Transport Security(简称ATS)特性, 主要使到原来请求的时候用到的HTTP,都转向TLS1.2协议进行传输。这也意味着所有的HTTP协议都强制使用了HTTPS协议进行传输... 阅读全文
posted @ 2015-10-12 13:34 七夜i 阅读(4085) 评论(0) 推荐(0) 编辑
摘要: 原文:http://blog.sina.com.cn/s/blog_7b9d64af0101kkiy.html发现一个,很厉害的小工具,让xCode控制台输出文本有颜色!闲话不说,上代码。大概需要三个步骤:一、安装xCode扩展插件XcodeColors。二、引入第三方库CocoaLumberjac... 阅读全文
posted @ 2015-10-09 14:46 七夜i 阅读(410) 评论(0) 推荐(0) 编辑
摘要: 开发使用SourceTree 忽略文件这块老弄错,这次专门博客一下,使用CocoaPods 开发项目, 忽略步骤如下: 忽略文件内容如下 *.xcworkspace xcuserdata *.lock Pods svn客户端 (mac) http://www.jb51.net/softs/19346 阅读全文
posted @ 2015-10-08 12:32 七夜i 阅读(609) 评论(0) 推荐(0) 编辑