1

I am adding chat functionality to my app using JSQMessagesViewController. I am going with a dark theme and made the chat dark except for the send message bar. I have not been able to figure out how to change its color (See screenshot below). Can someone tell me how to change the color of the send message bar?

Thanks!

ChatExample

chickenparm
  • 1,570
  • 1
  • 16
  • 36
  • this is the content view that you need to reference and customize... http://cocoadocs.org/docsets/JSQMessagesViewController/7.2.0/Classes/JSQMessagesInputToolbar.html#//api/name/contentView – sargeras May 16 '16 at 11:31
  • Thanks! That was what I needed. I added the code below to viewDidLoad() and it worked. self.inputToolbar.contentView.backgroundColor = UIColor.blackColor() – chickenparm May 16 '16 at 11:41

1 Answers1

5

Here is how I changed it. Thanks Sargeras for the help.

self.inputToolbar.contentView.backgroundColor = UIColor.blackColor()

chickenparm
  • 1,570
  • 1
  • 16
  • 36