我正在尝试向群组聊天应用添加功能,如果点击了头像,您将被带到包含该用户信息的个人资料页面。我使用的框架(JSQMesssagesViewController)有一个内置的方法来点击头像didTapAvatarImageView
。
override func collectionView(_ collectionView: JSQMessagesCollectionView!, didTapAvatarImageView avatarImageView: UIImageView!, at indexPath: IndexPath!) {
let message = messages[indexPath.item]
DispatchQueue.main.async {
let profileVC = ProfileViewController()
let name = message.senderDisplayName ?? ""
let gender = self.genderDictionary.value(forKey: message.senderId) as? String ?? ""
let status = self.statusDictionary.value(forKey: message.senderId) as? String ?? ""
let avatarString = self.avatarDictionary.value(forKey: message.senderId) as? String ?? ""
print("\n\nsegueTest: name: \(name), gender: \(gender), avatar: \(avatarString), status: \(status)\n\n")
profileVC.profileImageView.loadImageUsingCacheWithUrlString(avatarString)
profileVC.nameLabel.text = name
switch gender {
case "male":
profileVC.nameLabel.textColor = UIColor(hexString: "8097E1")
case "female":
profileVC.nameLabel.textColor = UIColor(hexString: "E98BD5")
default:
profileVC.nameLabel.textColor = UIColor(hexString: "4F4F4F")
}
switch status {
case "2FCB78":
profileVC.profileGoingOutLabel.text = "\(name) wants to go out tonight!"
case "E13F34":
profileVC.profileGoingOutLabel.text = "\(name) is staying in tonight."
default:
profileVC.profileGoingOutLabel.text = "\(name) might want to go out tonight - let them know what the plans are!"
}
self.performSegue(withIdentifier: "chatToProfile", sender: self)
}
}
当我点击一个头像时,我意外地发现了nil崩溃 - 但是我的print语句打印出没有问题的值,所以它们确实存在。我不知道我在哪里出错了,因为Xcode没有告诉我哪个值为零,而且正如我所说,我尝试传递的值确实存在。
我该怎么做才能解决这个错误?
答案 0 :(得分:1)
您需要为profileVC中的前一个视图控制器显示的所有标签声明字符串属性。
var strName : String
在viewDidLoad
中nameLabel.text = strName
在之前的viewcontroller中
profileVC.strName = yourstring
如果使用prepareForSegue,则需要使用此方法而不是didSelect传递数据。
如果你想在没有prepareForSegue的情况下在didSelect上传递数据,那么你需要创建一个viewcontroller实例,如下所示。
更正以下代码,仅用于解释
let profileVC = self.storyboard.initiatedwithidentifier: "yourViewcontrollerIdentifier"
profileVC.strName = yourString
self.navigationviewcontroller(profileVc, animated : true)