I have used below code to open SnapChat and it only opens SnapChat from my app.
NSURL *appSnapChatURL = [NSURL URLWithString:@"snapchat://app"];
if([[UIApplication sharedApplication] canOpenURL:appSnapChatURL])
{
[[UIApplication sharedApplication] openURL:appSnapChatURL];
}
Now I need one more functionality that how to add text/image/video in that so I can share text/image/video on SnapChat from my app.
Please help.