UIKit高级视图
落幕的青春
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
UIKit框架-高级视图-UIDatePicker-时间选择器
UIDatePicker 时间选择器属性创建 UIDatePicker *picker = [[UIDatePicker alloc] initWithFrame:CGRectMake(0, 100, self.view.frame.size.width, 200)];local 地区地区语言(默认当前地区) picker.locale = [原创 2018-01-10 13:54:48 · 915 阅读 · 0 评论 -
UIKit框架-高级视图-UIAlertViewController-提示框
UIAlertController 提示框属性创建UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"主题" preferredStyle:UIAlertControllerStyleAlert]; UIAlertControllerStyl原创 2018-01-11 10:03:09 · 461 阅读 · 0 评论 -
UIKit框架-高级视图-UICollectionView-表格控件
UICollectionView 表格视图 继承UIScrollView继承它的所有属性 属性创建UICollectionViewFlowLayout *flowLayout=[[UICollectionViewFlowLayout alloc] init];self.collectionView=[[UICollectionView alloc] i原创 2018-01-10 10:55:38 · 268 阅读 · 0 评论 -
UIKit框架-高级视图-UITableView-表格控件
UITableView 表视图 继承UIScrollView继承它所有属性属性创建UITableView *tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain]; UITableViewStylePlain 基本类型原创 2018-01-10 10:48:47 · 551 阅读 · 0 评论
分享