
iOS General
文章平均质量分 62
b_end_an
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Xcode
Archivearchive can be used to generate .ipa file without a real device. The .ipa file can be used to create OTA linkhttp://help.testflightapp.com/customer/portal/articles/1333914-how-to-create-a原创 2013-12-18 00:38:27 · 453 阅读 · 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 · 497 阅读 · 0 评论 -
Mac/Xcode
XcodeHot Keyfind some keyword in the whole workspace/project: Win + Shift + O.CleanUsed to clean compiled file, we should clean the project before we recompile.For Xcode 4.5:Produc原创 2012-12-20 04:43:52 · 391 阅读 · 0 评论 -
Apple Documentation
ReadCocoa Fundamentals Guide: Communicating with objectshttps://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/CocoaFundamentals/CommunicatingWithObjects/CommunicateWithObjects.ht原创 2013-07-18 00:33:48 · 479 阅读 · 0 评论 -
iOS Obj-C General Info
Header File visibility SettingsPublic vs. Private vs. Projecthttp://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 · 569 阅读 · 0 评论 -
UINavigationController
http://simplecode.me/2011/09/04/an-introduction-to-uinavigationcontroller/原创 2013-07-17 10:06:03 · 415 阅读 · 0 评论 -
UIImage
resizableImageWithCapInsets- (UIImage *)resizableImageWithCapInsets:(UIEdgeInsets)capInsetsHow to use the method原创 2013-07-02 10:02:49 · 454 阅读 · 0 评论 -
Debug Tricks
Creating break point for unrecognized selector:http://stackoverflow.com/questions/7156090/creating-breakpoint-in-xcode-for-unrecognized-selectorMy App Crashed now what?http://www.raywender原创 2013-07-14 00:58:34 · 453 阅读 · 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 · 496 阅读 · 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 · 506 阅读 · 0 评论 -
iPhone developer's Cookbook -- Chapter 1 Introduction
Assembling iPhone ProjectsThe iPhone Application SkeletonHere 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 · 723 阅读 · 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-etcIn Xcode this is called "Code Sense". And these icons also exist in Xcod原创 2014-01-04 10:51:27 · 1121 阅读 · 0 评论