如何在 Objective C 编程中使用 UISegmentedControl 来显示或隐藏屏幕上的一些按钮?
该站点上的另一个问题显示了此代码:
if (selectedSegment == 0) {
[firstView setHidden:NO];
[secondView setHidden:YES];
} else {
[firstView setHidden:YES];
[secondView setHidden:NO];
}
但是我究竟如何将一些东西放入 firstView 和 secondView 中?如果有人给我一个例子,请添加一个 UIButton 作为例子。注意:我不能使用基于视图的应用程序来执行此操作,因为我的程序已经很远了。提前致谢。