標籤:
UITableView是iOS中使用最頻繁的視圖。
一、UITableView的組成部分
1、UITableView初始化
UITableView有兩個協議:
1)dataSource是UITableViewDataSource類型,主要為UITableView提供顯示用的 資料(UITableViewCell),指定UITableViewCell支援的編輯操作類型 (insert,delete和 reordering),並根據使用者的操作進行相應的資料更新操作,如果資料沒有更具操作進行正確的更新,可能會導致顯示異常,甚至crush。
2)delegate是UITableViewDelegate類型,主要提供一些可選的方法,用來控制tableView的選擇、指定section的頭和尾的顯示以及協助完成cell的刪除和排序等功 能。
UITableView有兩種風格:
1)Plain,主要用於動態表,而動態表一般在儲存格數目未知的情況下使用。
2)Grouped,用於靜態表,可以將cell分成一組一組的。
UITableView只能有一列資料,只能支援縱向滑動。
1 //根據frame和style來建立tableView2 UITableView * tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height) style:UITableViewStylePlain];3 tableView.delegate = self;4 tableView.dataSource = self;5 self.table = tableView;6 [self.view addSubview:tableView];
2、表頭視圖
表頭視圖是UITableView最上邊的視圖,經常用於展示表視圖的資訊,也用於展示圖片,輪播圖等。
我們需要用到@property(nonatomic, retain) UIView *tableHeaderView;這個屬性。
1 //初始化頭部視圖2 UIView * view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, 100)];3 view.backgroundColor = [UIColor redColor];4 self.table.tableHeaderView = view;
3、表腳視圖
表腳視圖是UITableView最下邊的視圖,用於展示表視圖的資訊,一般用來顯示“更多”等資訊,或確定按鈕等一些特殊的操作。
我們需要用到屬性@property(nonatomic, retain) UIView *tableFooterView屬性。
1 //初始化表腳視圖2 UIView * footView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, 80)];3 footView.backgroundColor = [UIColor blueColor];4 self.table.tableFooterView = footView;
未完待續。。。。。。。
ios學習筆記——UITableView