我正在尝试构建一个将浮动在 ViewController 顶部的按钮,它应该静态保持在相同的位置,而它下面的 viewcontroller 可以上下滚动。
我设计了自己的按钮类,并在父 Viewcontroller 的 viewdidload 中这样做:
- (void)viewDidLoad// this is the parent viewcontroller
{
[super viewDidLoad];
customButton *floatingButton = [[UIButton alloc]initWithFrame:(self.view.frame)];
[floatingButton setLocation:CGPointMake(300, 430)];
[self.view addSubview:floatingButton];
[self.view bringSubviewToFront:floatingButton];
这不是这样做的,因为当我运行按钮时没有显示,只有视图控制器。我怎样才能做到这一点?