自定义UITableViewSectionHeaderView与FooterView 使用注意与重用

发布时间:2020-07-05 10:51:22 作者:小yiyi
来源:网络 阅读:7294
  1. 创建UITableViewHeaderFooterView的子类。

         

-(instancetype)initWithReuseIdentifier:(NSString *)reuseIdentifier

{

    if (self = [super initWithReuseIdentifier:reuseIdentifier]) {


    }

    return self;

}

纯代码创建,重写initWithReuseIdentifier方法,在该方法中添加内容。


2.控制器中实现代理方法

- (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view.

//XIB创建注册方式

    [self.tableView registerNib:[UINib nibWithNibName:@"SectionHeader" bundle:nil] forHeaderFooterViewReuseIdentifier:@"sectionHeader"];

//代码创建 注册方式    

//[self.tableView registerClass:[ZYSectionHeader class] forHeaderFooterViewReuseIdentifier:@"sectionHeader"];


}

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section

{

    static NSString *reuseId = @"sectionHeader";

    SectionHeader *header = (SectionHeader *)[tableView dequeueReusableHeaderFooterViewWithIdentifier:reuseId];

    

    return header;

}



推荐阅读:
  1. ListView设置headerview和footerview
  2. B/S架构与C/S架构有什么区别

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

ios tableview headerfooter

上一篇:安装 SDE for Oracle走过的那些坑

下一篇:cocos2dx[3.2](18)——屏幕截图ScreenShot

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》