【发布时间】:2018-07-02 17:19:24
【问题描述】:
当我从自定义 UIViewController 导航到 TabBarController 的第二个选项卡时遇到问题,这当然是另一个 UIViewController。
如果我从 AdminPanel 导航到 Products 不会崩溃,因为我有一个从 Products 到 AdminPanel 的push。但是从 AdminPanel 到购物车我没有任何 push。
这是有错误的图片:
这是错误:“无法将 'MyAppName.AdminPanelViewController' (0x10e878418) 类型的值转换为 'MyAppName.ProductsViewController' (0x10e877e00)。”
这是我的设计:
这是我的代码:
// PRODUCTS VC
class ProductsViewController: UIViewController{
var selectedProductsArray = [Product]()
var priceForSelectedProductsArray = [Float]()
// Func which is using GestureRecognition to access the Admin Panel when we press on User Avatar
func accessToAdminPanel(){
let tapGesture = UITapGestureRecognizer(target: self, action: #selector(ProductsViewController.adminImageTapped(gesture:)))
userAvatarImageView.addGestureRecognizer(tapGesture)
}
// Function to open the AdminPanelViewController
@objc func adminImageTapped(gesture: UIGestureRecognizer) {
let storyBoard : UIStoryboard = UIStoryboard(name: Constants.nameOfMainSB, bundle:nil)
let adminPanelVC = storyBoard.instantiateViewController(withIdentifier: Constants.adminPanelStoryboard) as! AdminPanelViewController
self.navigationController?.pushViewController(adminPanelVC, animated: true)
}
// Func which will add the product into an array of products when the user press Add To Cart
func didTapAddToCart(_ cell: ProductTableViewCell) {
let indexPath = self.productsTableView.indexPath(for: cell)
addProduct(at: indexPath!)
selectedProductsArray.append(productsArray[(indexPath?.row)!]) // Append products for cart
priceForSelectedProductsArray.append(productsArray[(indexPath?.row)!].price) // Append prices for selected products
}
}
// CART VC
class CartViewController: UIViewController {
var productsInCartArray = [Product]()
var productPricesArray = [Float]()
// Append the selectedProducts into productsInCartArray using the TabBarController
func fetchSelectedProducts() {
// ------------------HERE IS CRASHING AT THIS LINE -----------------------
productsInCartArray = ((self.tabBarController?.viewControllers![0] as! UINavigationController).topViewController as! ProductsViewController).selectedProductsArray
productPricesArray = ((self.tabBarController?.viewControllers![0] as! UINavigationController).topViewController as! ProductsViewController).priceForSelectedProductsArray
totalSum = productPricesArray.reduce(0, +)
}
}
如果您无法通过这部分代码找出崩溃的地方,我可以给您指向 git 源代码的链接,因为我没有什么要隐藏的。
非常感谢您在阅读本文时抽出宝贵时间,希望您能帮助我,因为我花了半天时间试图找到一个解决方案来修复这个导致我的应用程序崩溃的错误。
【问题讨论】:
标签: ios swift uiviewcontroller uitabbarcontroller