UITableView的基本知识
一、UITableView的概念: UITableView 是iOS中最重要的控件,几乎所有的页面都可以用UITableView完成。 tableView的使用需要遵循代理和数据源,这也是一种非常棒的设计模式,数据源模式可以近似为代理模式。 tableview要引入2个代理UITableViewDelegate,UITableViewDataSource 二、UITableView的基本用法: 1、基本属性: (1)设置tableview的类型 UITableViewStylePlain 基本类型,分区头标题会悬浮 UITableViewStyleGrouped 分组的类型,分区头标题不会悬浮 //初始化: UITableView *tableView = [[UITableView alloc]initWithFrame:CGRectMake(0,0,self.view.frame.size.width,self.view.frame.size.height) style:UITableViewStylePlain]; (2)设置背景: tableView.backgroundColor = [UIColor redColor]; (3)设置分割线: 类型:tableView.separatorStyle = UITableViewCellSeparatorStyleNone;