作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 iPhone 开发的初学者。
我用 SWRevealViewController 添加了侧边菜单。
这是我的侧边菜单代码
func sideMenus(){
if revealViewController() != nil {
menuButton.target = revealViewController()
menuButton.action = #selector(SWRevealViewController.revealToggle(_:))
revealViewController().rearViewRevealWidth = 250
revealViewController().rightViewRevealWidth = 160
view.addGestureRecognizer(self.revealViewController().panGestureRecognizer())
}
}
但我现在卡住了。我现在正在努力为应用程序添加页脚。
我不想使用标签栏 Controller 。因为我在页脚中只有一张图片。你们能帮我把页脚添加到我的应用程序吗?
谢谢
最佳答案
您需要为每个 ViewController
添加一个显示页脚的 UI 元素。您的设计最简单的选择似乎是 UIImageView
并将代表您的赞助商文本+图像的图像加载到它。
另一种解决方案是将 UIToolBar
的 UITabBar
添加到每个没有按钮的 ViewController
并将图像设置为背景图像你的标签栏到工具栏。您可以在 Storyboard
或代码中执行此操作。
关于ios - 如何为应用程序的每个 ViewController 添加页脚?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45606229/
我是一名优秀的程序员,十分优秀!