<h3 id = "keyboard">收起键盘</h3>
在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];
。
<h3 id = "json">NSJSONSerialization比NSKeyedArchiver更好</h3>
在选择持久化方案时,系统提供的NSJSONSerialization
比NSKeyedArchiver
在效率和体积上都更优,更详细的测试参考:https://github.com/randomsequence/NSSerialisationTests;
<h3 id = "language">设置应用内的系统控件语言</h3>
在工程的info.plist文件中增加如下内容:
<key>CFBundleLocalizations</key>
<array>
<string>zh_CN</string>
<string>en</string>
</array>
<h3 id = "snapshot">巧用系统的截屏功能</h3>
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;
}
<h3 id = "js">Javascript文件设置调整</h3>
Javascript的js后缀的文件默认被拖动到工程中后,是在编译列表中,而不是资源列表中。需要手动调整期位置,否则它就不能打包到ipa文件中。
注:xcode7已经修改此问题,如下图:
<h3 id="warning">忽略编译警告</h3>
在Build Phase中对应的文件中添加 -w
参数。
<h3 id="NSLog">定制NSLog</h3>
#ifdef DEBUG
#define NSLog(args,...) NSLog(@"-%d%s:%@",__LINE__,__FUNCTION__,[NSString stringWithFormat:(args), ##__VA_ARGS__])
#else
#define NSLog(...)
#endif
<h3 id="hideNav">导航栏上的一些设置</h3>
去掉导航栏阴影黑线。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]];