如何在iOS上叠加子视图?

时间:2011-03-02 00:25:47

标签: iphone ios

我有一个图表视图,我想覆盖一些按钮。当我使用按钮创建一个笔尖并在添加图形后将其添加为子视图时,它只是在白色屏幕上显示按钮。

GraphViewController *graphViewController = [[GraphViewController alloc] init];
[self.view addSubview:graphViewController.view];
GraphButtonViewController *graphButtonViewController = [[GraphButtonViewController alloc] initWithNibName:@"GraphButtonView" bundle:nil];
[self.view addSubview:graphButtonViewController.view];

1 个答案:

答案 0 :(得分:1)

您是否尝试过让您的GraphButtonView xib具有透明背景(主视图)?