0

我制作了一个包含带有一些背景的分段 tableView 的弹出框。我想删除那条细的垂直边界线,它存在于两个部分之间的两侧。

在此处输入图像描述

4

1 回答 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 回答