03 2014 档案

摘要:官方:https://developer.apple.com/library/ios/documentation/General/Conceptual/CocoaTouch64BitGuide/Introduction/Introduction.htmlhttps://developer.apple.com/library/ios/documentation/General/Conceptual/CocoaTouch64BitGuide/OptimizingMemoryPerformance/OptimizingMemoryPerformance.html#//apple_ref/doc/ui 阅读全文
posted @ 2014-03-31 01:10 willbin 阅读(1127) 评论(0) 推荐(0)
摘要:现在OS X中自带的【预览】功能十分强大,我们甚至可以通过预览来直接制作一些透明效果的PNG图片,当做图片素材(例如图标)使用。这里要用到的是【预览】中的“即时Alpha”工具。-首先我们要使用预览打开你希望制作成为透明背景效果的图片-点击预览上方工具栏的笔状编辑工具,显示编辑工具栏-在出现的编辑工具栏中,找到 "即时Alpha" 这个功能,像一个魔术笔一样的按钮,点一下准备开始编辑(如果没出现在默认列表,那即时Alpha就是在选择工具的下拉菜单中)-这个时候,用鼠标点击一下图片,不要松开,开始进行拖动,上下移动,直到选中图案为止,一般情况下红色区域都会变成透明的;这里涉及 阅读全文
posted @ 2014-03-28 15:52 willbin 阅读(7985) 评论(0) 推荐(0)
摘要:Xcode升级到5.1了,apple默认让所有app都通过64位编译器编译,所以会报各种错误信息,关闭64位编译就好了。选中Targets—>Build Settings—>Architectures。删除$(ARCH_STANDARD)(点’-’)增加armv7和armv7scocoapods中也... 阅读全文
posted @ 2014-03-28 10:01 willbin 阅读(186) 评论(0) 推荐(0)
摘要:基本设置完成后,保证scope是 "all" 或 至少 包含 "follow_app_official_microblog".测试时, 保证你的测试账号没有关注或授权此应用, 不然就不会出现这个了. 阅读全文
posted @ 2014-03-21 10:27 willbin 阅读(219) 评论(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 阅读(1033) 评论(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 阅读(249) 评论(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 阅读(285) 评论(0) 推荐(0)