Once authenticated, you can create a new case for the user by calling createNewCase, providing the topic ID and first message.
YourViewController
#import <TapTalkLive/TapTalkLive.h>
[[TapTalkLive sharedInstance] createNewCaseWithTopicID:TOPIC_ID
firstMessage:FIRST_MESSAGE
success:^(TTLCaseModel *caseModel) {
// Successfully created a new case
}
failure:^(NSError *error) {
}];
ParametersTOPIC_ID: (String) ID of the selected topic, can be obtained from getTopicListFIRST_MESSAGE: (String) message to be sent by the user to start a case
To use this method, you need to first finish process.