iOS开发之footView上加的button没有响应

仔细检查下,因为tableView的footerView初始化跟高度是分离的,有可能忘记了写高度,导致点击无法响应

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {

    return 100;

}

猜你喜欢

转载自blog.csdn.net/weixin_34160277/article/details/86988296
今日推荐