gpt4 book ai didi

swift - Swift2.2中解析数组

转载 作者:行者123 更新时间:2023-11-28 15:55:29 24 4
gpt4 key购买 nike

如何从下面的响应中获取正文和标题数据。我完全卡住了

[aps: {

alert = {
body = test123;
title = test123;
};
},
gcm.message_id: 0:4a]

最佳答案

如果您正在处理通知,那么您需要像这样访问数据。

if let info = notification.userInfo as? [String: AnyObject],
let apsDic = info["aps"] as? [String: AnyObject],
let alertDic = info["alert"] as? [String: AnyObject] {
if let body = alertDic["body"] as? String {
print(body)
}
if let title = alertDic["title"] as? String {
print(title)
}
}

关于swift - Swift2.2中解析数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41806226/

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