解决 tableView 上面的间隔问题
UIView *v = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 0.1)];
self.tableView.tableHeaderView = v;
tableView 最上面有个间隔.
UIView *v = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.tableView.frame.size.width, 0.1)];
self.tableView.tableHeaderView = v;
tableView 最上面有个间隔.
本文标题:iOS 开发中遇到的问题合集(自用)
本文链接:https://www.haomeiwen.com/subject/yhsoettx.html
网友评论