steve228uk / MessengerKit

:speech_balloon: A UI framework for building messenger interfaces on iOS
MIT License
1.48k stars 129 forks source link

Quick question, just add an inputAccessoryView ?? #71

Closed smhk closed 4 years ago

smhk commented 4 years ago

I want to simply add an inputAccessoryView to the keyboard,

messageInputView.textView.inputAccessoryView =

does not work, "Cannot assign to property: 'inputAccessoryView' is a get-only property"

what's the easy way to add . inputAccessoryView ??

Screen Shot 2020-06-26 at 9 44 39 AM

sjoness commented 4 years ago

@smhk currently the textView occupies the space where an inputAccessoryView would go. Is this something that you would like in-place of the textView, or above it?

smhk commented 4 years ago

ah makes sense, thanks for the reply and explanation, @sjoness

due to customization needs. in the end it was easier for us to just use a table view rather than a library

very best, cheers