如何在不添加另一个 UIView 的情况下为情节提要中的 uitableViewCell 制作等宽分隔符?
Posted
技术标签:
【中文标题】如何在不添加另一个 UIView 的情况下为情节提要中的 uitableViewCell 制作等宽分隔符?【英文标题】:How to make an equal width separator for tableViewCell on storyboard without by adding another UIView? 【发布时间】:2016-04-07 03:00:09 【问题描述】:如何在情节提要上为UITableViewCell
制作等宽分隔符而不添加另一个UIView
?
【问题讨论】:
【参考方案1】:-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
if ([cell respondsToSelector:@selector(setSeparatorInset:)])
[cell setSeparatorInset:UIEdgeInsetsZero];
if ([cell respondsToSelector:@selector(setLayoutMargins:)])
[cell setLayoutMargins:UIEdgeInsetsZero];
来自How to set the full width of separator in UITableView
【讨论】:
以上是关于如何在不添加另一个 UIView 的情况下为情节提要中的 uitableViewCell 制作等宽分隔符?的主要内容,如果未能解决你的问题,请参考以下文章
如何通过按下图像导航到另一个 UIView 控制器(之前在情节提要中创建)
在没有情节提要的情况下在 UIView 中添加 UICollectionView