
iOS General
文章平均质量分 62
b_end_an
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Xcode
Archive archive can be used to generate .ipa file without a real device. The .ipa file can be used to create OTA link http://help.testflightapp.com/customer/portal/articles/1333914-how-to-create-a原创 2013-12-18 00:38:27 · 450 阅读 · 0 评论 -
How to Create My own Delegate
http://stackoverflow.com/questions/5660874/how-to-create-my-own-delgate-user-defined-delegate-in-objective-c原创 2013-07-17 10:04:09 · 493 阅读 · 0 评论 -
Mac/Xcode
Xcode Hot Key find some keyword in the whole workspace/project: Win + Shift + O. Clean Used to clean compiled file, we should clean the project before we recompile. For Xcode 4.5: Produc原创 2012-12-20 04:43:52 · 383 阅读 · 0 评论 -
Apple Documentation
Read Cocoa Fundamentals Guide: Communicating with objects https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/CocoaFundamentals/CommunicatingWithObjects/CommunicateWithObjects.ht原创 2013-07-18 00:33:48 · 478 阅读 · 0 评论 -
iOS Obj-C General Info
Header File visibility Settings Public vs. Private vs. Project http://developer.apple.com/library/ios/#recipes/xcode_help-project_editor/Articles/Setting%20the%20Role%20of%20a%20Header%20File.html#/原创 2013-07-04 02:47:52 · 567 阅读 · 0 评论 -
UINavigationController
http://simplecode.me/2011/09/04/an-introduction-to-uinavigationcontroller/原创 2013-07-17 10:06:03 · 411 阅读 · 0 评论 -
UIImage
resizableImageWithCapInsets - (UIImage *)resizableImageWithCapInsets:(UIEdgeInsets)capInsetsHow to use the method原创 2013-07-02 10:02:49 · 452 阅读 · 0 评论 -
Debug Tricks
Creating break point for unrecognized selector: http://stackoverflow.com/questions/7156090/creating-breakpoint-in-xcode-for-unrecognized-selector My App Crashed now what? http://www.raywender原创 2013-07-14 00:58:34 · 451 阅读 · 0 评论 -
Obj-C code
How to find object path: NSString *xmlPath = [[NSBundle mainBundle] pathForResources:@"config" ofType:@"xml"]; [NSBundle mainBundle] will tell you the path to your project folder. And the search is原创 2013-07-06 04:54:50 · 491 阅读 · 0 评论 -
How to round off float value
float theFloat = 1.23456; int rounded = lroundf(theFloat); NSLog(@"%d",rounded); int roundedUp = ceil(theFloat); NSLog(@"%d",roundedUp); int roundedDown = floor(theFloat); NSLog(@"%d",roundedDown); //原创 2013-07-01 09:17:44 · 504 阅读 · 0 评论 -
iPhone developer's Cookbook -- Chapter 1 Introduction
Assembling iPhone Projects The iPhone Application Skeleton Here is the most common source code pattern: a main.m file, an application delegate, and a view controller. XIB files(.xib) are created原创 2013-06-07 23:08:41 · 720 阅读 · 0 评论 -
Xcode => Symbols in Symbol Navigator
http://stackoverflow.com/questions/6662395/xcode-intellisense-meaning-of-letters-in-colored-boxes-like-f-t-c-m-p-c-k-etc In Xcode this is called "Code Sense". And these icons also exist in Xcod原创 2014-01-04 10:51:27 · 1118 阅读 · 0 评论