《iOS开发进阶》阅读笔记(二)——开发技巧

收起键盘

在UIViewController中收起键盘,处了调用相应控件的resignFirstResponder方法外,还有另外三种方法:

  • 重载UIViewController的touchBegin方法,然后在里面执行[self.view endEditing:YES];,这样单击UIViewController的任意地方,就可以收起键盘;
  • 直接执行[[UIApplicatoin sharedApplication] sendAction:@selector(resignFirstResponder) to:nil from:nil forEvent:nil];,用于在获得当前UIViewController比较困难的时候使用。
  • 直接执行[[[UIApplicatoin sharedApplication] keyWindow] endEditing:YES];


NSJSONSerialization比NSKeyedArchiver更好

在选择持久化方案时,系统提供的NSJSONSerializationNSKeyedArchiver在效率和体积上都更优,更详细的测试参考:https://github.com/randomsequence/NSSerialisationTests;

设置应用内的系统控件语言

在工程的info.plist文件中增加如下内容:

CFBundleLocalizations

    zh_CN
    en

巧用系统的截屏功能

iOS7以后,apple提供的系统的截屏API:- (UIView *)snapshotViewAfterScreenUpdates:(BOOL)afterUpdates来实现截屏功能。而对于iOS7以前的系统,可以用过代码来实现截屏功能:

+ (UIImage *)captureImageFromView:(UIView *)view{
    CGRect screenRect = [view bounds];
    UIGraphicsBeginImageContext(screenRect.size);
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    [view.layer renderInContext:ctx];
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return image;
}

Javascript文件设置调整

Javascript的js后缀的文件默认被拖动到工程中后,是在编译列表中,而不是资源列表中。需要手动调整期位置,否则它就不能打包到ipa文件中。

注:xcode7已经修改此问题,如下图:


《iOS开发进阶》阅读笔记(二)——开发技巧_第1张图片
xcode7_js.png

忽略编译警告

在Build Phase中对应的文件中添加 -w参数。

定制NSLog

#ifdef DEBUG
#define NSLog(args,...) NSLog(@"-%d%s:%@",__LINE__,__FUNCTION__,[NSString stringWithFormat:(args), ##__VA_ARGS__])
#else
#define NSLog(...)
#endif

导航栏上的一些设置

去掉导航栏阴影黑线。setBackGroundImage中也可以直接使用[UIImage new]
UINavigationBar *navBar = self.navigationController.navigationBar;
[navBar setBackgroundImage:[UIImage imageNamed:@"white_backgroud"] forBarPosition:UIBarPositionAny barMetrics:UIBarMetricsDefault];
[navBar setShadowImage:[UIImage new]];

去掉searchBar的阴影
[self.searchBar setBackgroundImage:[UIImage new]];    

你可能感兴趣的:(《iOS开发进阶》阅读笔记(二)——开发技巧)