gpt4 book ai didi

ios - 从通知对象传递数组会导致 iOS 10 中的应用程序崩溃

转载 作者:行者123 更新时间:2023-11-30 12:56:20 24 4
gpt4 key购买 nike

我将以下代码从 View Controller 发布到另一个 View Controller

self.genreString.append("Comedy")
self.sortByString.append("orderly")
let myDict:Dictionary<String, [String]> = ["sortoption": self.genreString, "contenttype":self.sortByString]

NSNotificationCenter.defaultCenter().postNotificationName("SecondViewControllerDismissed", object: nil, userInfo: myDict)

在接收 View Controller 时,我接受这样的数据

  if let info = sender.userInfo as? Dictionary<String,[String]> {
// Check if value present before using it
if let s = info["sortoption"] {

if info["sortoption"]?.count > 0
{
JLToast.makeText("2", duration: 2).show()

let s :[String] = info["sortoption"]!


self.genreFilter.removeAll()
self.genreFilter = []
self.genreFilter.appendContentsOf(s)


}
}
}

但是数组没有初始化,它说!!!

最佳答案

以下代码在 XCode Playground 中运行良好

import Foundation
import PlaygroundSupport

PlaygroundPage.current.needsIndefiniteExecution = true

let myDict:Dictionary<String, [String]> = ["sortoption": ["Comdedy"], "contenttype": ["orderly"]]

NotificationCenter.default.addObserver(forName: NSNotification.Name(rawValue: "SecondViewControllerDismissed"), object: nil, queue: OperationQueue.main) {
notification in
if let info = notification.userInfo as? Dictionary<String,[String]> {
// Check if value present before using it
if let s = info["sortoption"] {
print(s)
}
}
}

NotificationCenter.default.post(name: NSNotification.Name(rawValue: "SecondViewControllerDismissed"), object: nil, userInfo: myDict)

关于ios - 从通知对象传递数组会导致 iOS 10 中的应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40361350/

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