My application has a chat between only two people, so I’d like to remove the nickname from the chat cells. Is there a way to do this?
I’m using UIKit 1.2.7 on iOS 14.
Thanks!
My application has a chat between only two people, so I’d like to remove the nickname from the chat cells. Is there a way to do this?
I’m using UIKit 1.2.7 on iOS 14.
Thanks!
Hi @dmtoptal
Could you elaborate more on what you are trying to achieve?
(i.e. use case)
Is Katherine be the nickname you refer to?
Did you not want to use the nicknames at all in your application in the signup, login process?
Hey @dmtoptal,
You can get that effect by setting the messageCellTheme’s ogTitleColor color to match the view’s background color. For example:
SBUTheme.messageCellTheme.ogTitleColor = UIColor(hex:“#FFFFFF”)
Just be sure to do this before the view appears, such as in the preceding view controller.
Got it, thanks Jason!