
IOS
$Elvin
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
IOS快捷键
单击Home Command-Shift-H 双击Home键 Command-Shift-H 按两次。原创 2017-05-07 15:08:24 · 408 阅读 · 0 评论 -
不同页面的tiaozhuan
let cent =self.storyboardlet centerView:UIViewController = cent!.instantiateViewController(withIdentifier:"center")self.present(centerView, animated:true, completion: nil)翻译 2017-05-23 16:43:42 · 698 阅读 · 0 评论 -
ios提示框
let alert =UIAlertController(title:"提示title", message:"提示内容", preferredStyle:.alert) let ok =UIAlertAction(title:"按钮名字", style: .cancel, handler:nil) alert.addAction(ok) self.present(alert,翻译 2017-05-08 14:55:40 · 331 阅读 · 0 评论 -
ios xcode 方法摘要
c 代表类 p代表属性 m代表方法 pr代表协议翻译 2017-05-07 15:47:18 · 300 阅读 · 0 评论 -
UItableView 去掉多余的分割线
self.tableView?.tableFooterView = UIView()翻译 2017-06-20 15:14:24 · 438 阅读 · 0 评论