IOS UITableView 底部添加按钮

一 要求效果

实现效果,在UITableView最底部添加提交按钮.

可以通过UITableView tableFooterView 实现

// accessory view below content. default is nil. not to be confused with section footer
@property (nonatomic, retain) UIView *tableFooterView;



二 代码实现

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    //1.添加底部按钮
    [self addFooterButton];
}



/**
 *  添加底部按钮
 */
-(void)addFooterButton
{
    //1.初始化Button
    UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    
    //2.设置文字和文字颜色
    [button setTitle:@"完成诊断" forState:UIControlStateNormal];
    [button setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
    
    //3.设置圆角幅度
    button.layer.cornerRadius = 10.0;
    button.layer.borderWidth = 1.0;
    
    //4.设置frame
    button.frame = CGRectMake(0, 100, 20, 44);
    
    //5.设置背景色
    button.backgroundColor = GreenColor;
    
    //6.设置触发事件
    //省略
    
    //7.添加到tableView tableFooterView中
    self.tableView.tableFooterView = button;
}


三 效果图

技术分享


郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。