上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 22 下一页
摘要: Xcode升级到5.1了,apple默认让所有app都通过64位编译器编译,所以会报各种错误信息,关闭64位编译就好了。选中Targets—>Build Settings—>Architectures。删除$(ARCH_STANDARD)(点’-’)增加armv7和armv7scocoapods中也... 阅读全文
posted @ 2014-03-28 10:01 willbin 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 基本设置完成后,保证scope是 "all" 或 至少 包含 "follow_app_official_microblog".测试时, 保证你的测试账号没有关注或授权此应用, 不然就不会出现这个了. 阅读全文
posted @ 2014-03-21 10:27 willbin 阅读(213) 评论(0) 推荐(0) 编辑
摘要: http://www.takobear.tw/12/post/2014/02/bear-git-flow-sourcetreegit-flow.htmlBear 實驗室: 什麼是Git flow ? 如何在SourceTree使用Git flow管理開發!02/14/20140 Comments今天Bear實驗室的主題不是要介紹程式,而是來好好介紹一下有關管理進度開發的工具!那今天實驗室的主題是.....Git Flow!!!!使用 git 的開發者都知道 git 有 branch 這個功能,但要如何運用在開發流程呢?(以下內容將以Source Tree講解,不知道Source Tree是什麼 阅读全文
posted @ 2014-03-19 23:02 willbin 阅读(1022) 评论(0) 推荐(0) 编辑
摘要: // 单例+ (id)sharedInstance{ __strong static id sharedObject = nil; static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{ sharedObject = [[self alloc] init]; }); return sharedObject;}dispatch_onceExecutes a block object once and only once for the lifetime of an appli... 阅读全文
posted @ 2014-03-18 10:41 willbin 阅读(242) 评论(0) 推荐(0) 编辑
摘要: the private key for is not installed on this mac如果提交 时出现这个问题, 有可能是 keychain重复了,1:要去keychain中把旧的删除,2:到xcode中刷新账号信息, 就会生成 新的. 阅读全文
posted @ 2014-03-06 13:42 willbin 阅读(635) 评论(0) 推荐(0) 编辑
摘要: 把 主工程 和 Pods 中的所有的 Architectures --> Architectures 改为 Standard architectures(arvmv7, armv7s), 去掉 (including 64-bit). 阅读全文
posted @ 2014-03-03 14:58 willbin 阅读(280) 评论(0) 推荐(0) 编辑
摘要: 1:去官方下载2:安装dmg3:安装完成后, 网页上提示, 要设置相应的密码, 设置完成.4:打开对应的app程序, 把 mysql Database运行起来, 不然, 网页上看到的就是未运行状态5:其他问题1 :修改完phpmyadmin的root密码后, 再登录提示如下错误#1045 - Access denied for user 'root'@'localhost' (using password: NO)解决方法:修改/Applications/XAMPP/xamppfiles/phpmyadmin/config.inc.php把这一行修改就可以了.( 阅读全文
posted @ 2014-02-26 15:02 willbin 阅读(515) 评论(0) 推荐(0) 编辑
摘要: 1: 添加中文的 LocalizationsProject --> Info --> Localizations 添加 "Chinese(Simplified)"2:在 InfoPlist.strings 的属性中进行 Localization 阅读全文
posted @ 2014-02-18 14:52 willbin 阅读(547) 评论(0) 推荐(0) 编辑
摘要: pod installAnalyzing dependencies[!] Pod::Executable pullerror: cannot open .git/FETCH_HEAD: Permission denied*************http://stackoverflow.com/questions/16049335/cocoapods-pod-install-permission-deniedI solve this problem by running the following command:sudo chown -R username.groupname ~/Libra 阅读全文
posted @ 2014-02-13 20:59 willbin 阅读(2642) 评论(0) 推荐(0) 编辑
摘要: 虽然iOS 5.0版本之后加入了ARC机制,由于相互引用关系比较复杂时,内存泄露还是可能存在。所以了解原理很重要。这里讲述在没有ARC的情况下,如何使用Instruments来查找程序中的内存泄露,以及NSZombieEnabled设置的使用。本文假设你已经比较熟悉Obj-C的内存管理机制。实验的开发环境:XCode 4.5.21、运行Demo。先下载一个实现准备好的内存泄露的Demo吧:leak app下载下来,打开运行,程序是一个寿司的列表,列出各种寿司卷。试着选择里面的几行,应该是选第二行的时候就崩溃了。崩溃截图:在崩溃的地方断住了,知道crash的地方了,但是不知道具体crash的.. 阅读全文
posted @ 2014-02-12 15:03 willbin 阅读(438) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 22 下一页