iOS:如何在superview中更改子视图的背景颜色

时间:2014-02-27 20:28:08

标签: ios iphone uiview xcode5

我正在尝试在点击子视图时修改子视图的背景。这是我的代码:

-(void)changeBackGroundOfSubView:(NSUInteger)ViewTag
{
    UIView *mySubview = [self.view viewWithTag:ViewTag];
    mySubview.backgroundColor = [UIColor blueColor];
}

我从mySubview获得了正确的标签,我可以删除子视图,但由于某种原因,我无法更改子视图的背景颜色。你们中的任何人都知道我能错过什么?我非常感谢你的帮助。

0 个答案:

没有答案