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];
ボタンを実行すると表示されず、View Controllerのみが表示されるため、これは実行していません。どうすればこれを達成できますか?