Using background view for UITableViewCell in iOS 7 covers default delete button

后端 未结 6 508
[愿得一人]
[愿得一人] 2021-01-12 02:38

I am using background view for UITableviewCell which is an imageview, I am using the image view to achieve two side corners for first and last cell. It is working fine But t

6条回答
  •  不知归路
    2021-01-12 03:33

    how about instead of using the background view. just use your image as the background patternn color try using this

    cell.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:YOUR_IMAGE]];
    

提交回复
热议问题