次のように、プログラムで UITableViewController にボタンを追加しています。
-(void)createFlipButton
{
UIButton *button = [UIButton buttonWithType:UIButtonTypeInfoDark];
button.frame = CGRectMake(282, 372, 18, 19);
[button addTarget:self action:@selector(flipView) forControlEvents:UIControlEventTouchDown];
[self.view addSubview:button];
[self.view bringSubviewToFront:button];
}
しかし、button.frame スペースを占有するセルにスタックしています。なぜ 機能しないの[self.view bringSubviewToFront:button]
ですか?
また、 [self.tableView bringSubviewToFront:button]
どちらも機能しません。