-
HeaderView
UITableView中設置HeaderView有兩種方式
方式一:
UIView *redView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 200, 200)];
redView.backgroundColor = [UIColor redColor];
self.myTableView.tableHeaderView = redView;
方式二:
利用UITableView的代理方法
- 只設置文本
- (nullable NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section;
- (nullable NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section;
- 設置view
- (nullable UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section;
- (nullable UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section;
在這兩個方法中听怕,當然我們可以用最普通的UIView,不過系統(tǒng)提供了UITableViewHeaderFooterView類泼返。使用UITableViewHeaderFooterView的好處是有重用的功能鲸拥,所以建議使用UITableViewHeaderFooterView。UITableViewHeaderFooterView的使用方法可以仿照UITableViewCell的使用方法
- UITableViewCell使用方法(先注冊后使用):
自定義UITableViewCell有兩種形式:直接用代碼或者用XIB
注冊:
- (void)registerNib:(nullable UINib *)nib forCellReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(5_0);
- (void)registerClass:(nullable Class)cellClass forCellReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(6_0);
使用:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
/*------------------------直接用代碼自定義Cell--------------------*/
MyClassTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyClassTableViewCell"];
// 使用代碼自定義的cell要重寫- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(nullable NSString *)reuseIdentifier NS_AVAILABLE_IOS(3_0) NS_DESIGNATED_INITIALIZER;方法
// 而且要判斷緩存池中拿到的cell是否為空
if (cell == nil) {
cell = [[MyClassTableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"MyClassTableViewCell"];
}
/*------------------------直接用代碼自定義Cell--------------------*/
/*------------------------使用XIB自定義Cell--------------------*/
// 使用XIB自定義的Cell可以直接從緩存池中取到,可以省去if判斷
MyXIBTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyXIBTableViewCell"];
cell.cellLabel.text = @"afhfgkgklsdg";
/*------------------------使用XIB自定義Cell--------------------*/
return cell;
}
- UITableViewHeaderFooterView使用方法(也是先注冊后使用)
自定義UITableViewHeaderFooterView也有兩種形式:直接用代碼或者用XIB
UITableViewHeaderFooterView設置背景顏色時:要用contentView這個屬性
注冊:
- (void)registerNib:(nullable UINib *)nib forHeaderFooterViewReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(6_0);
- (void)registerClass:(nullable Class)aClass forHeaderFooterViewReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(6_0);
使用:
- (nullable UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section;
- (nullable UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section;
以創(chuàng)建Header為例
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
/*------------------------使用代碼自定義UITableViewHeaderFooterView--------------------*/
MyClassHeaderView *header = [tableView dequeueReusableHeaderFooterViewWithIdentifier:@"MyClassHeaderView"];
// 使用代碼自定義的UITableViewHeaderFooterView要重寫- (instancetype)initWithReuseIdentifier:(nullable NSString *)reuseIdentifier NS_DESIGNATED_INITIALIZER;方法
// 而且要判斷緩存池中拿到的UITableViewHeaderFooterView是否為空
if (header == nil) {
header = [[MyClassHeaderView alloc] initWithReuseIdentifier:@"MyClassHeaderView"];
}
/*------------------------使用代碼自定義UITableViewHeaderFooterView--------------------*/
/*------------------------使用XIB自定義UITableViewHeaderFooterView--------------------*/
MyXIBHeaderView *header = [tableView dequeueReusableHeaderFooterViewWithIdentifier:@"MyXIBHeaderView"];
/*------------------------使用XIB自定義UITableViewHeaderFooterView--------------------*/
return header;
}
// 一定要實現(xiàn)這個高度方法藕夫,否則上面的方法不執(zhí)行
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 100.0;
}
-
組頭的懸浮效果
UITableView設置為plain的樣式時,組頭就會默認有懸浮效果(即組頭會停留在屏幕的上邊枯冈,直到改組滾動結束)
- 取消懸浮效果的方法:參考來至【Cdream】的文章【iOS - 取消tableView組頭卡住懸停的辦法】
1毅贮、將 style 設置為 Grouped 。這時所有的section header都會隨著scrollview滾動了霜幼。但是這時嫩码,tableview的底部會默認出現(xiàn)一個footerView的區(qū)域誉尖,如果不想要這個滾動區(qū)域罪既,可以通過代理方法設置
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
return 0.1; // 注意要設置為0.1,不能設置為0
}
2铡恕、重載scrollview的delegate方法
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
CGFloat sectionHeaderHeight = 40;
if (scrollView.contentOffset.y<=sectionHeaderHeight&&scrollView.contentOffset.y>=0) {
scrollView.contentInset = UIEdgeInsetsMake(-scrollView.contentOffset.y, 0, 0, 0);
} else if (scrollView.contentOffset.y>=sectionHeaderHeight) {
scrollView.contentInset = UIEdgeInsetsMake(-sectionHeaderHeight, 0, 0, 0);
}
}