dharmik webmigrates
dharmik webmigrates

Reputation: 33

How to remove some extra space at bottom in QMChatViewController?

I am using QuickBlox Q-municate for my chat application and after set up Q-municate in my application in swift, i am getting some extra space at bottom. I tried with different solution provided in code but not able to remove that space.

Please help me on this how can i remove that space.

enter image description here

Upvotes: 1

Views: 106

Answers (1)

Mitesh Dobareeya
Mitesh Dobareeya

Reputation: 1020

You should override "inputToolBarStartPos" method which is used in the QMChatViewController.

For Swift

-(NSUInteger)inputToolBarStartPos {
 return 0;
}

For Objective C

@objc func inputToolBarStartPos() -> Int{
return 0;
}

Original answer

Upvotes: 1

Related Questions