如何选择标签栏上的项目?
这是我的代码
@IBOutlet var tabBar: UITabBar!
@IBOutlet var item: UITabBarItem!
func tabBar(tabBar: UITabBar, didSelectItem item: UITabBarItem) {
if item.tag == 0 {
print("if this worktap 1")
let vc = SLComposeViewController(forServiceType: SLServiceTypeFacebook)
vc.setInitialText("Look at this !")
vc.addURL(NSURL(string: "https://link.com"))
presentViewController(vc, animated: true, completion: nil)
}
else {
// code
print("if this work tap 2")
}
}
但是点击一个项目时没有任何反应。
答案 0 :(得分:0)
我通过使用ViewController
中的一些代码来修复它