求问下这个ios界面用什么做的?tableview吗?

图片说明

要加些手段才能使分割线左靠
//分割线靠左
if ([self.tableView respondsToSelector:@selector(setLayoutManager:)]) {
[self.tableView setLayoutMargins:UIEdgeInsetsZero];
}
if ([self.tableView respondsToSelector:@selector(setSeparatorInset:)]) {
[self.tableView setSeparatorInset:UIEdgeInsetsZero];
}

    //解决分割线右移15像素问题,步骤2
  • (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{//UIEdgeInsetsMake(20, 0, 0, 0)
    if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
    [cell setSeparatorInset:UIEdgeInsetsZero];
    }

    //tableView.separatorColor = [UIColor colorWithHex:@"eeeeee" alpha:1.0];
    if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
    [cell setLayoutMargins:UIEdgeInsetsZero];
    }
    }

顶顶顶滴滴答答滴滴答答滴滴答答滴滴答答

很明显,是个tableview。上面是个导航控制器。

可以使用静态tableviewController

图片说明 我弄好后是这个效果~~! 怎么把他的边去了

最简单的static cell 的tableview,