ios - Smooch- Customize chat interface window -


so time want integrate smooch api make ios chat application.

i have integrated smooch sdk , [smooch show] method, opens chat window.

does 1 know how customize window? methods in documentation customize user interface limited change navigation color , text of button. let's want background image in chat window. how can customize whole window?

unfortunately docs correct, limited customization possible @ time (source: work @ smooch). there plans allow greater customizability in future.

if wanted change background color / background image though, might able walk view hierarchy of conversation view controller , find place put view. haven't tested code, may not work, general idea:

uiviewcontroller* conversationvc = [smooch newconversationviewcontroller]; [conversationvc.view addsubview:mybackground]; [conversationvc.view sendsubviewtoback:mybackground]; 

Comments