子视图隐藏表视图iphone

时间:2010-10-15 10:08:41

标签: iphone ios4

我有一个图像视图,其中包含了一个表格视图。现在我想在图像视图上插入一个子视图,通过它我想要显示扩展的背景图像。

我在viewDidLoad ....上添加了类似的子视图。

if([data count]>3)
{
    UIImageView *i=[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"test.png"]];
    [i setFrame:CGRectMake(1.25,350,321,210)];
    [[self view] addSubview:i];
    //[[self view] sendSubviewToBack:i];
    [i release], i=nil;
}

问题是表格视图没有显示在我添加子视图的区域中。我试图将子视图发送回去,但如果我这样做,只会显示上一个图像视图... Plz帮助......

1 个答案:

答案 0 :(得分:1)

添加图像视图后

[self.view bringSubviewToFront:myTableView];