我有一个项目,其中我在 UIView 中有一个 UIScrollView。在 UIScrollView 内必须看到 3 列和 X 行的按钮列表。我有显示按钮的代码,但没有插入 UIScrollView,它打印出来并且不滚动。除此之外,还要覆盖我在视图底部的 TabBar。
显示按钮的函数代码是
for (int y_axis=0; y_axis<=3; y_axis++)
{
for (int x_axis=0; x_axis<=2; x_axis++)
{
UIButton *btn=[[UIButton alloc] initWithFrame:CGRectMake(16+100*x_axis,100.0+115*y_axis,88.0 ,88.0)];
btn.backgroundColor=[UIColor brownColor];
[self.view addSubview:btn];
}
}
如何在 UIScrollView 中显示它?谢谢!!