iOS 7 UITableView: is it a bug or is it me?

后端 未结 4 880
故里飘歌
故里飘歌 2021-02-14 14:35

Please see the attached image. In table views in iOS 7, UIKit draws a thin gray vertical line between the accessory view and the reordering control. However, when the table view

4条回答
  •  一生所求
    2021-02-14 14:49

    I'm having the same issue on an iphone 6s plus and solved it setting the backgroundColor of the cell's textLabel to clearColor

    cell.textLabel.backgroundColor = [UIColor clearColor];
    

    Looking at my problem with reveal showed me that the right border of the label was drawing this vertical line.

提交回复
热议问题