无法设置 UILabelView.Text 值

unable to set UILabelView.Text value

我收到此错误且无法解决...

我正在通过 UISegmentedControl 按钮更改将一个对象从 UIViewController 传递到另一个对象。下面是我用来传递对象的代码。它运行良好,我能够在控制台中打印对象详细信息。

 @IBAction func switchViewAction(_ sender: UISegmentedControl) {
        let vc = DirectionsViewController()
        if let unwrappedRecipe = self.details
        {
            vc.customInit(recipes: unwrappedRecipe)
        } else

        {
            print("it has no value!")
        }
        self.viewContainer.bringSubviewToFront(views[sender.selectedSegmentIndex])

    }

但是,问题是当我尝试为标签设置值时,出现以下错误:

Unexpectedly found nil while implicitly unwrapping an Optional value

下面是我在 DirectionsViewController 中使用的代码

 @IBOutlet weak var lblDirections: UILabel!
var recipe: Recipe? = nil

override func viewDidLoad()
{
    super.viewDidLoad()

    // Do any additional setup after loading the view.
}

func customInit(recipes: Recipe)
{
    lblDirections.text =  recipes.name
}

我研究了可选变量和强制变量,也尝试安全地解包变量但没有成功。有人可以帮忙吗?

如果您有一个从故事板或 xib 加载的 IBOutlet,它是 nil,直到 viewDidLoad 被调用。因此,当在 viewDidLoad 之前调用 func customInit(recipes: Recipe) 时,lblDirectionsnil,并且因为它是强制展开的,所以它会崩溃。您可以通过两种方式解决此问题:

  1. 丑陋但简单。 viewDidLoad 在您第一次获取视图控制器的 view 时被调用,因此您可以在 func switchViewAction(_ sender: UISegmentedControl) 中的 vc.customInit(recipes: unwrappedRecipe) 之前添加 _ = vc.view。我不建议使用它的生产代码,但您可以使用它来测试一切是否正常。

  2. 因为你使用的是xib,所以你可以初始化一个view controller并提供自定义的init(甚至你的方法名也表明了它:customInit)。要拥有正确的视图控制器初始化,您需要使用:


class DirectionsViewController: UIViewController {
   let recipe: Recipe
   @IBOutlet weak var lblDirections: UILabel!

   init(recipe: Recipe) {
       self.recipe = recipe
       let classType = type(of: self)
       let bundle = Bundle(for:classType)
       super.init(nibName: "DirectionsViewController", bundle: bundle) //provide your nib filename 
   }

   override func viewDidLoad(){
       super.viewDidLoad()
       //code from func customInit(recipes: Recipe)
       lblDirections.text =  recipe.name
   }

   @available(*, unavailable, message: "use init(recipe: Recipe)")
   override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
       fatalError("init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) has not been implemented")
   }

   @available(*, unavailable, message: "don't use sotryboard! use nib and init(recipe: Recipe)")
   required init?(coder: NSCoder) {
       fatalError("init(coder:) has not been implemented")
   }
}

您不能提供可选的 Recipe 或在创建后更新它,但这会使代码不那么复杂。它还假定您的 xib 文件名为 DirectionsViewController.xib(如果不是,您需要在行 super.init(nibName: "DirectionsViewController", bundle: bundle) 中更改它)。


你也可以使用我的微库NibBased来少写一些代码。使用该库时,您的代码应为:

import NibBased

class DirectionsViewController: NibBaseViewController {
    let recipe: Recipe
    @IBOutlet weak var lblDirections: UILabel!

    init(recipe: Recipe) {
        self.recipe = recipe
        super.init()
    }

    override func viewDidLoad() {
        super.viewDidLoad()
        lblDirections.text =  recipe.name
    }
}

在 DirectionsViewController 和 DirectionsViewController 调用的 viewDidLoad 方法中将值传递给配方变量

    lblDirections.text =  recipe.name