I have create ticket form with certain fields and one table view controller to show list of all tickets.
When User clicks on any action Item (Like button, tab) it should call only one function like
[[Helpshift sharedInstance] showConversation:self withOptions:nil];
Now when this functions called list of all tickets should display. How I should call my table view controller inside showConversation method of helpshift class? Helpshift class is extended from NsObject class.
I want to distribute code like a static library just Like helpshift. You can also watch video here
This is what exactly I want to acheive.