我制作了一个包含带有一些背景的分段 tableView 的弹出框。我想删除那条细的垂直边界线,它存在于两个部分之间的两侧。
user1302553
问问题
213 次
1 回答
0
将view
背景颜色或图像设置为您的自定义颜色/图像,然后将tableview
背景设置为零。它应该工作。
- (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;
}
于 2013-01-24T15:56:49.730 回答