如何使用UIPageViewController在每个页面的底部添加一个按钮?

时间:2017-08-28 07:47:26

标签: ios uipageviewcontroller

我使用UIPageViewController来展示一些页面。在每次滑动时,我都会使用UITableviewControllerUIPageViewController提供tableview来呈现页面。现在我想在每个页面的底部添加一个按钮。我尝试过两种方式:第一种:在tableview的超级视图中添加按钮并将其带到前面

 [self.tableView.superview addSubview:submitButton];
//[self.tableView.superview bringSubviewToFront:submitButton];

第二步:向pageviewcontroller的视图添加按钮并将其置于前面

[strongSelf.pageViewController.view addSubview:submitButton];
[strongSelf.pageViewController.view bringSubviewToFront:submitButton];

但两者都没有,没有出现!提前谢谢!

1 个答案:

答案 0 :(得分:0)

尝试将按钮添加到表格视图 - >页脚视图。