美文网首页
开发技巧

开发技巧

作者: 普阳 | 来源:发表于2016-12-08 15:31 被阅读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>

相关文章

网友评论

      本文标题:开发技巧

      本文链接:https://www.haomeiwen.com/subject/ppkfjttx.html