Open lordKaos11 opened 5 years ago
this all started when all the sudden my send button would do nothing. it would not even register.
now its saying the "ambiguous for type lookup.."
@lordKaos11, I'm sorry but you will need to provide more information. Posting an entire file's contents with a single line description makes it hard to understand what you are trying to do.
Can you please specify which line you are having the error on and paste that code snippet?
import UIKit import MessageKit import MessageInputBar
class newViewController: MessagesViewController {
}
extension newViewController: MessagesDataSource { func currentSender() -> SenderType { return Sender(id: member.name, displayName: member.name)
}
extension newViewController: MessagesLayoutDelegate { func heightForLocation(message: MessageType, at indexPath: IndexPath, with maxWidth: CGFloat, in messagesCollectionView: MessagesCollectionView) -> CGFloat {
}
extension newViewController: MessagesDisplayDelegate { func configureAvatarView( _ avatarView: AvatarView, for message: MessageType, at indexPath: IndexPath, in messagesCollectionView: MessagesCollectionView) {
}
extension newViewController: MessageInputBarDelegate { func messageInputBar( _ inputBar: MessageInputBar, didPressSendButtonWith text: String) {
}