摘要:
引入到工程中去之后,无法使用#import <extThree20JSON/extThree20JSON.h> 将类文件在工程中使用需要对引入的文件先进行编译,生成目标文件之后才可以使用,不然会一直报错! 阅读全文
摘要:
在使用Xcode进行iPhone编程时,有时需要参考iPhone SDK的文档,不过每次Control+Click后,Xcode都会试图连接Internet,进行在线读取。有什么方法能够把资料下载到硬盘上进行离线阅读吗? 答案是肯定的。首先去Xcode的Preference中的Documentation Sets下,选择所需的docset,这里是iPhone 4.0 Reference Library,右击选择“Get Info…”,找到Feed URL:http://developer.apple.com/rss /com.apple.adc.documentation.AppleiPhon 阅读全文
摘要:
按钮custom之后 进行单击无法显示 titlehttp://stackoverflow.com/questions/9561427/uibutton-of-uibuttontypecustom-with-title-does-not-show-as-clicked 阅读全文
摘要:
http://www.cocoachina.com/bbs/read.php?tid=92353 阅读全文
摘要:
http://xiaohui3837843.blog.163.com/blog/static/54388740201111615432445/此方法已经验证,可行UIToolbar* tools = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 150, 45)];[tools setTintColor:[self.navigationController.navigationBar tintColor]];[tools setAlpha:[self.navigationController.navigationBar alpha]];NS 阅读全文
摘要:
#ifdefDEBUG#defineDLog(fmt,...)NSLog((@"%s[Line%d]"fmt),__PRETTY_FUNCTION__,__LINE__,##__VA_ARGS__);#else#defineDLog(...)#endif#defineALog(fmt,...)NSLog((@"%s[Line%d]"fmt),__PRETTY_FUNCTION__,__LINE__,##__VA_ARGS__); http://2015.iteye.com/blog/1374820 阅读全文
摘要:
NSBundle*bundle =[NSBundle mainBundle];NSDictionary*info =[bundle infoDictionary];NSString*prodName =[info objectForKey:@"CFBundleDisplayName"];http://stackoverflow.com/questions/1247142/getting-an-iphone-apps-product-name-at-runtime[[[NSBundle mainBundle] infoDictionary] objectForKey:(NSS 阅读全文
摘要:
http://www.cocoachina.com/bbs/read.php?tid=62061&keyword=tabBar非常好用的自定制tabBar 阅读全文