yes, I push from HomeController with `matchView.sendMessageButton.addTarget(self, action: #selector(handleSendMessage), for: .touchUpInside)`
`@objc func handleSendMessage(match: Match) {}`
I have an error: Method cannot be marked @objc because the type....
I tried different ways such as create a dictionary = ["name": user?.name ?? "", "profileImageUrl": user?.imageUrl1 ?? ""] but it nil. Are any ways to do this?