自定义弹出背景问题

时间:2013-01-24 15:46:49

标签: iphone ios ipad background uipopovercontroller

我制作了一个包含带有一些背景的分段tableView的popover。我想删除那条薄的垂直边框线,它出现在两个部分之间的边上。

enter image description here

1 个答案:

答案 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;
}