我使用UIPageViewController
来展示一些页面。在每次滑动时,我都会使用UITableviewController
向UIPageViewController
提供tableview
来呈现页面。现在我想在每个页面的底部添加一个按钮。我尝试过两种方式:第一种:在tableview的超级视图中添加按钮并将其带到前面
[self.tableView.superview addSubview:submitButton];
//[self.tableView.superview bringSubviewToFront:submitButton];
第二步:向pageviewcontroller的视图添加按钮并将其置于前面
[strongSelf.pageViewController.view addSubview:submitButton];
[strongSelf.pageViewController.view bringSubviewToFront:submitButton];
但两者都没有,没有出现!提前谢谢!
答案 0 :(得分:0)
尝试将按钮添加到表格视图 - >页脚视图。