作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将数据从我的主 ViewController 传递到标签栏中的另一个 ViewController。
我尝试使用以下代码,但出现错误 Could not cast value of type 'Test.FirstViewController'
to 'Test.ViewController'
override func viewWillAppear(_ animated: Bool)
{
super.viewWillAppear(animated)
let tab1Controller = self.tabBarController?.viewControllers?.first as! ViewController
print(tab1Controller.test)
}
最佳答案
我刚刚使用了以下代码,它在 Xcode 9 和 swift 4.0 上对我来说运行良好。以下方法在仅显示第一个 View Controller 的 View Controller 类中声明。
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
if segue.identifier == "sendingToTabBar" {
let storyboard = UIStoryboard(name: "Main", bundle: nil)
let tabVC = storyboard.instantiateViewController(withIdentifier: "tabVC") as! UITabBarController
self.present(tabVC, animated: true, completion: {
let vc = tabVC.selectedViewController as! FirstViewController
vc.dataLBL.text = self.dataTF.text!
})
}
}
关于ios - 如何将数据从 ViewController 传递到标签栏 iOS 中的 ViewController?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47117184/
我是一名优秀的程序员,十分优秀!