以下の内容はhttps://anton0825.hatenablog.com/entry/2014/09/26/000000より取得しました。


UITableViewのSeparator InsetのLeftを0にしても区切り線が一番左までこない

Separator Insetの他にlayoutMarginも変更しないといけない。

// CustomCellクラスに実装する
- (void)awakeFromNib {
    [super awakeFromNib];
    [self setSeparatorInset:UIEdgeInsetsZero];
    [self setLayoutMargins:UIEdgeInsetsZero];
}
// CustomViewControllerクラスに実装する
- (void)viewDidLoad {
    [super viewDidLoad];
    [self.tableView setSeparatorInset:UIEdgeInsetsZero];
    [self.tableView setLayoutMargins:UIEdgeInsetsZero];
}

参考:




以上の内容はhttps://anton0825.hatenablog.com/entry/2014/09/26/000000より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14