随笔分类 -  apple

摘要:The File Owner is an instantiated, runtime object that owns the contents of your nib and its outlets/actions when the nib is loaded. It can be an inst... 阅读全文
posted @ 2015-03-06 23:05 微信公众号--共鸣圈 阅读(241) 评论(0) 推荐(0)
摘要:static UIView *modalView;if (modalView) { [modalView removeFromSuperview]; modalView = nil; return; } CGRect screen = [... 阅读全文
posted @ 2015-03-06 17:06 微信公众号--共鸣圈 阅读(2030) 评论(0) 推荐(0)
摘要:https://developer.apple.com/library/ios/featuredarticles/ViewControllerPGforiPhoneOS/AboutViewControllers/AboutViewControllers.html#//apple_ref/doc/ui... 阅读全文
posted @ 2015-03-06 09:52 微信公众号--共鸣圈 阅读(416) 评论(0) 推荐(0)
摘要:relationship -A "relationship" segue is the segue between a container view controller and its child or children -- so, the initial controller of a nav... 阅读全文
posted @ 2015-03-06 09:21 微信公众号--共鸣圈 阅读(365) 评论(0) 推荐(0)
摘要:多控制器管理 UITabBarController,跟UINavigationController类似,UITabBarController也可以轻松管理多个控制器,轻松完成控制器之间的切换,例如QQ,微信.头文件定义:123456789101112131415161718@interface UI... 阅读全文
posted @ 2015-03-05 16:39 微信公众号--共鸣圈 阅读(345) 评论(0) 推荐(0)
摘要:1, Fuzzy Autocomplete 阅读全文
posted @ 2015-03-05 11:03 微信公众号--共鸣圈 阅读(230) 评论(0) 推荐(0)
摘要:http://ivomynttinen.com/blog/the-ios-7-design-cheat-sheet/With the release of iOS 7, app designers and developers will need to adjust their visual lan... 阅读全文
posted @ 2015-03-05 05:49 微信公众号--共鸣圈 阅读(244) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2015-03-03 17:08 微信公众号--共鸣圈 阅读(149) 评论(0) 推荐(0)
摘要:我们在进行iOS开发时,经常会在类的声明部分看见类似于@synthesize window=_window;的语句,那么,这个window是什么,_window又是什么,两个东西分别怎么用,这是一个比较基本的问题,也关乎我们理解Objective-C中对类、类的属性、类的存取器、类的局部变量的统一理... 阅读全文
posted @ 2015-02-15 15:54 微信公众号--共鸣圈 阅读(300) 评论(0) 推荐(0)
摘要:对于模拟器,其在终端的log文件位于: ~/Library/Logs/CoreSimulator/C4B94BA6-EF08-4AD2-AE7D-1A3A2E2AC545/system.log对于真机:Here's another tip using the great libimobiledevi... 阅读全文
posted @ 2015-02-13 14:52 微信公众号--共鸣圈 阅读(539) 评论(0) 推荐(0)
摘要:http://www.raywenderlich.com/tutorialshttp://www.raywenderlich.com/ios-tutorialshttp://web.stanford.edu/class/cs193p/cgi-bin/drupal/downloads-2013-fal... 阅读全文
posted @ 2015-02-13 07:01 微信公众号--共鸣圈 阅读(149) 评论(0) 推荐(0)
摘要:Chisel是一个加强LLDB调试能力的小插件.主要特点在于辅助界面开发调试时在控制台以尽可能直观的方式查看界面的元素和情况.为我们梳理视图,控制器以及类关系层级.以及一些临时的界面调试变动进行快捷响应.它的作者来自于Facebook团队.得益于开源,让我们来观摩和了解一下这个东东到底有什么用处. ... 阅读全文
posted @ 2015-02-11 11:32 微信公众号--共鸣圈 阅读(325) 评论(0) 推荐(0)
摘要:CMD + SHIFT + { - Select Next TabCMD + SHIFT + } - Select Previous Tabtoggle between .h and .m files in xcode5 CTRL+CMD+up arrow在xcode的所有窗口循环切换: C... 阅读全文
posted @ 2015-02-11 10:13 微信公众号--共鸣圈 阅读(257) 评论(0) 推荐(0)
摘要:类: Class (description/template for an object)实例: Instance (manifestation of a class)消息: Message (sent to object to make it act)方法: Method (code invoke... 阅读全文
posted @ 2015-02-10 07:17 微信公众号--共鸣圈 阅读(341) 评论(0) 推荐(0)
摘要:http://ubuntu.buct.edu.cn/android/repository/ 阅读全文
posted @ 2015-02-09 22:35 微信公众号--共鸣圈 阅读(186) 评论(0) 推荐(0)
摘要:Using keyboard shortcutsTo use a keyboard shortcut, press a modifier key at the same time as a character key. For example, pressing the Command key (i... 阅读全文
posted @ 2015-02-09 14:45 微信公众号--共鸣圈 阅读(634) 评论(0) 推荐(0)
摘要:imac使用的是login shell,所有开启一个terminal的时候,不会运行.bashrc文件,而是运行.bash_profile文件,因此只需要中home目录新建一个.bash_profile文件,然后在.bash_profile里source.bashrc即可。imac的terminal... 阅读全文
posted @ 2015-02-09 14:33 微信公众号--共鸣圈 阅读(329) 评论(0) 推荐(0)