我有一个coreplot项目。 viewcontroller中的视图类已更改为CPTGraphHostingView。
创建图表后(这很好), 我正在添加一个按钮作为子视图,这将启动一个弹出窗口 显示的按钮是反转的。我在不同的视图控制器中具有相同的控件,它工作正常。 Popover也很好。
以下是创建和添加UIButton
的代码 UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button addTarget:self
action:@selector(monthSelection)
forControlEvents:UIControlEventTouchDown];
[button setTitle:@"Change Month" forState:UIControlStateNormal];
button.frame = CGRectMake(330, 650, 111, 40);
[self.view addSubview:button];
[这里是发生什么事情的屏幕截图。 UIButton假设显示在popover下面的某个地方。我错过了什么。
答案 0 :(得分:1)
不要将子视图添加到图表托管视图中。相反,请创建托管视图的其他视图兄弟,即将它们添加为同一超级视图的子视图。