怎样让UITableView的分割线从最左边开始绘制
1个回答
2017-05-07 · 互联网+时代高效组织信息化平台
关注
展开全部
UITableView的分割线(separator)是私有类,应该是无法获取的。
不过可以通过tableView的属性修改它:
UITableView * tableView = [[UITableView alloc] initWithFrame:CGRectMake(20, 20, 400, 300) style:UITableViewStylePlain];
tableView.separatorColor = [UIColor redColor];
tableView.separatorInset = UIEdgeInsetsMake(0,80, 0, 80); // 设置端距,这里表示separator离左边和右边均80像素
tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
tableView.dataSource = self;
不过可以通过tableView的属性修改它:
UITableView * tableView = [[UITableView alloc] initWithFrame:CGRectMake(20, 20, 400, 300) style:UITableViewStylePlain];
tableView.separatorColor = [UIColor redColor];
tableView.separatorInset = UIEdgeInsetsMake(0,80, 0, 80); // 设置端距,这里表示separator离左边和右边均80像素
tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
tableView.dataSource = self;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询