随笔分类 -  apple

摘要:www.livecoding.tv 阅读全文
posted @ 2016-10-13 21:21 微信公众号--共鸣圈 阅读(391) 评论(0) 推荐(0)
摘要:https://help.ubuntu.com/community/MacBookProDetermine your hardware revisionTo determine which version / generation of MacBook Pro you have, you have ... 阅读全文
posted @ 2015-04-30 16:18 微信公众号--共鸣圈 阅读(2458) 评论(0) 推荐(0)
摘要:http://blog.cnbluebox.com/blog/2014/07/01/cocoashen-ru-xue-xi-nsoperationqueuehe-nsoperationyuan-li-he-shi-yong/目前在 iOS 和 OS X 中有两套先进的同步 API 可供我们使用:NS... 阅读全文
posted @ 2015-03-26 10:21 微信公众号--共鸣圈 阅读(350) 评论(0) 推荐(0)
摘要:http://mp.weixin.qq.com/s?__biz=MzA4NTQzNTMwOA==&mid=201174413&idx=3&sn=c3fe5b3459bac288e8ecafc9fb038a1d&scene=2&from=timeline&isappinstalled=0#rd移动ap... 阅读全文
posted @ 2015-03-25 17:43 微信公众号--共鸣圈 阅读(402) 评论(0) 推荐(0)
摘要:http://www.cocoachina.com/bbs/read.php?tid-15963.html版权声明此文版权归作者Vince Yuan (vince.yuan#gmail.com)所有。欢迎非营利性转载,转载时必须包含原始链接http://vinceyuan.cnblogs.com/,... 阅读全文
posted @ 2015-03-25 17:37 微信公众号--共鸣圈 阅读(185) 评论(0) 推荐(0)
摘要:It tells the compiler that any variable marked by it must be treated in a special way when it is used inside a block. Normally, variables and their co... 阅读全文
posted @ 2015-03-24 15:21 微信公众号--共鸣圈 阅读(372) 评论(0) 推荐(0)
摘要:http://stackoverflow.com/questions/5361369/uiview-frame-bounds-and-centerSince the question I asked has been seen many times I will provide a detailed... 阅读全文
posted @ 2015-03-24 09:56 微信公众号--共鸣圈 阅读(353) 评论(0) 推荐(0)
摘要:http://stackoverflow.com/questions/14207960/arc-bridge-modifiers-demystifiedBecause I learned what they were and how they operated just recently, I wa... 阅读全文
posted @ 2015-03-23 11:48 微信公众号--共鸣圈 阅读(261) 评论(0) 推荐(0)
摘要:ASK:Can you guide me how to properly link static library to iphone project. I use staic library project added to app project as direct dependency (tar... 阅读全文
posted @ 2015-03-19 11:00 微信公众号--共鸣圈 阅读(413) 评论(0) 推荐(0)
摘要:https://developer.apple.com/library/mac/documentation/DeveloperTools/Conceptual/DynamicLibraries/100-Articles/DynamicLibraryDesignGuidelines.htmlSpeci... 阅读全文
posted @ 2015-03-19 10:57 微信公众号--共鸣圈 阅读(279) 评论(0) 推荐(0)
摘要:https://developer.apple.com/downloads/ 阅读全文
posted @ 2015-03-18 11:17 微信公众号--共鸣圈 阅读(213) 评论(0) 推荐(0)
摘要:弹出框:https://github.com/jmascia/KLCPopuphttps://github.com/m1entus/MZFormSheetControllerhttp://stackoverflow.com/questions/16230700/display-uiviewcontr... 阅读全文
posted @ 2015-03-17 09:07 微信公众号--共鸣圈 阅读(163) 评论(0) 推荐(0)
摘要:Hugging => content does not want to growCompression Resistance => content does not want to shrink 阅读全文
posted @ 2015-03-13 13:06 微信公众号--共鸣圈 阅读(139) 评论(0) 推荐(0)
摘要:UIButton *checkbox;BOOL checkBoxSelected;checkbox = [[UIButton alloc] initWithFrame:CGRectMake(x,y,20,20)// 20x20 is the size of the checckbox that yo... 阅读全文
posted @ 2015-03-10 22:08 微信公众号--共鸣圈 阅读(221) 评论(0) 推荐(0)
摘要:1, use prepareForSegue:- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{ RWTDetailViewController *detailController =segue.desti... 阅读全文
posted @ 2015-03-10 05:04 微信公众号--共鸣圈 阅读(296) 评论(0) 推荐(0)
摘要:The storyboard ID is a String field that you can use to create a new ViewController based on that storyboard ViewController. An example use would be f... 阅读全文
posted @ 2015-03-10 04:53 微信公众号--共鸣圈 阅读(286) 评论(0) 推荐(0)
摘要:Frameworks make your life easier as an iOS Developer. They allow you to reuse code written by other developers in your own apps. An overview of key fr... 阅读全文
posted @ 2015-03-10 04:05 微信公众号--共鸣圈 阅读(159) 评论(0) 推荐(0)
摘要:One option is to set the button up using[myButton addTarget:yourOtherClass action:@selector(mySelector:) forControlEvents:UIControlEventTouchUpInside]... 阅读全文
posted @ 2015-03-09 11:01 微信公众号--共鸣圈 阅读(220) 评论(0) 推荐(0)
摘要:A property is not the same thing os a instance variable, you should read a little bit of them, there's plenty of sources in the internet.Summarizing, ... 阅读全文
posted @ 2015-03-09 09:59 微信公众号--共鸣圈 阅读(722) 评论(0) 推荐(0)
摘要:After the past few years I found that the only manageable way for creating/maintaining view (or any UI element in more general) is to instantiate the ... 阅读全文
posted @ 2015-03-06 23:21 微信公众号--共鸣圈 阅读(626) 评论(0) 推荐(0)