iOS9 隐藏状态栏方法
1.在Info.plist中增加 Status bar is initially hidden一行,选择为 YES,
2.还需增加 View controller-based status bar appearance 一行,选择为 NO。
这个方法支持iOS7及以后的系统,iOS9以后,通过[UIApplication sharedApplication] 取得app的单例,然后调用setStatusBarHidden方法隐藏 Status Bar的方法作废!
swift隐藏键盘
view.endEditing(true)
textfield.resignFirstResponder()
下一项
func textFieldShouldReturn(textField: UITextField) -> Bool { if textfield.isFirstResponder() { textfield1.becomeFirstResponder() } else if textfield1.isFirstResponder() { textfield.becomeFirstResponder() } else { view.endEditing(true) } return true }
App Transport Security
在Info.plist中添加NSAppTransportSecurity类型Dictionary。
在NSAppTransportSecurity下添加NSAllowsArbitraryLoads类型Boolean,值设为YES