gpt4 book ai didi

ios - Swift:在 Objective C 类中设置一个 NSString 属性

转载 作者:行者123 更新时间:2023-11-28 08:43:13 25 4
gpt4 key购买 nike

我是 iOS 开发的新手,我想弄清楚如何设置 .h 文件中定义的以下属性

@property (weak, nonatomic) NSString *name;

在我的 swift 类中,我试图将此属性设置为 segue 的一部分,

  if let destination = segue.destinationViewController as? ViewController {
let indexPath = sender as! NSIndexPath
destination.name = self.names[indexPath.row]
print(destination.name) //This is Nil
}

但在此之后 destination.name 仍然是 Nil。这样做的正确方法是什么?

最佳答案

您的代码在 swift 中似乎是正确的。现在,我唯一能想到的可能是将您的名称属性保持为零,那就是您的 destinationViewController 不是 ViewController 类,即我怀疑您的 if 语句没有执行。通过在打开 destinationViewController 的 if 代码中放置打印语句进行验证。

关于ios - Swift:在 Objective C 类中设置一个 NSString 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35952947/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com