开发技巧

2016-12-08  本文已影响7人  普阳

⭐️收起键盘 : 

在UIViewController中收起键盘, 除了调用相应空间的resignFirstResponder方法外, 还有3种方法

1.重载UIViewController中的touchesBegin方法, 然后在里面执行[self.view endEditing:YES];  这样点击UIViewController的任意地方, 就可以收起键盘

2.直接执行[[UIApplication sharedApplication] sendAciton:@selector(resignFirstResponder) to: nil from: nil forEvent: nil]; 用于在获取当前UIViewController比较困难的时候用

3.直接执行[[[UIApplication sharedApplication] keyWindow] endEditing:YES];

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

1.在UIWebView中长按会弹出系统的上下文菜单。

2.在UIImagePickerController中会使用系统的照相机界面。

3.在编译状态下的UITableViewCell,处于待删除状态时,会有一个系统的删除按钮。

解决方案:

打开info.plist文件 添加如下内容 

<key>CFBundleLocalizations</key>

<array>

            <string>zh_CN</string>

            <sting>en</string>

</array>

上一篇 下一篇

猜你喜欢

热点阅读