-
搜索结果的 TableView 中的 Cell 应用来默认 40pt 的高度,如果使用了自定义的 Cell,则必须重写一个方法查看全部
-
option 按键使用方便查看全部
-
1、outlet对应属性,action对应方法; 2、storage-weak:内存管理一种方式,生命周期结束释放内存查看全部
-
Socail查看全部
-
连接两个ViewController直接双击按钮,然后拖动到另一个ViewController上,这时会弹出一个Action Segure窗口,push选项只支持NavigationController查看全部
-
隐藏键盘 func textfieldShouldReturn(textfield: UITextField) -> Bool { textfield.resignFirstResponder(); return true }查看全部
-
支持edit操作需要重写 override func setEditing(editing: Bool, animated: Bool) { super.setEditing(editing, animated: animated); self.tableView.setEditing(editing, animated: animated); } 并且在viewDidLoad方法里面添加, navigationItem.leftBarButtonItem = editingButtonItem();查看全部
-
func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) { if editingStyle == UITableViewCellEditing.Delete { self.tableView.deleteRowsAtIndexPath([indexpath], withRowAnimation: UITableViewRowAnimation.Automatic) } }查看全部
-
iOS开发UI主要的三种方式查看全部
-
date:NSDate.date() 貌似在xcode 6.4 中得写成 date: NSDate()查看全部
-
存储数据的几种方式: sqlite plist 归档 userdefault 网络查看全部
-
这部分讲解不够细致查看全部
-
tab bar controller最多五个查看全部
-
// 注册全局点击结束事件 override func touchesEnded(touches: Set<NSObject>, withEvent event: UIEvent) { // 输入框失去焦点,收起键盘 yearOfBirth.resignFirstResponder() }查看全部
-
郭敬明 1983.6.6查看全部
举报
0/150
提交
取消