我制作了一个包含带有一些背景的分段tableView的popover。我想删除那条薄的垂直边框线,它出现在两个部分之间的边上。
答案 0 :(得分:0)
将view
的背景颜色或图像设置为自定义颜色/图像,然后将tableview
的背景设置为nil。它应该工作。
- (void)viewDidLoad
{
[super viewDidLoad];
//background image
self.view.backgroundColor= [UIColor clearColor];
self.view.backgroundColor=[[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"yourimage.png"]];
//table background image, mytableview should be your tableView's name you can try self.tableView if you have not set/delegate anything to it.
self.mytableView.backgroundView = nil;
}