你能告诉我如何在 iOS 中为 iPad 创建一个顶部的 TabBar,就像这张图一样?
底部的 TabBar 对我来说没问题。但是对于顶部的 TabBar,我仍然卡住了。
注意:我使用的是 XCode6、Objective-C、iOS8、iPad 屏幕 谢谢
我创建了一个新的空白项目并将 View Controller 嵌入到导航 Controller 中。
class ViewController: UIViewController {
var segmentedControl: UISegmentedControl!
var searchBar: UISearchBar!
override func viewDidLoad() {
super.viewDidLoad()
// Create the segmented control
self.segmentedControl = UISegmentedControl(items: ["Active", "Due", "Trash"])
self.segmentedControl.tintColor = UIColor.redColor()
self.segmentedControl.sizeToFit() // Replace this with any size you want
// Create the search bar
self.searchBar = UISearchBar(frame: CGRect(x: 0, y: 0, width: 200, height: 32))
let rightBarButton = UIBarButtonItem(customView: self.searchBar)
// Finally add them to the navigation item
self.navigationItem.titleView = self.segmentedControl
self.navigationItem.rightBarButtonItem = rightBarButton
}
}
关于ios - 如何在 iOS 上创建顶部 TabBar?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31683586/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |