How can you launch Periscope from your applications via IBAction. I'd like to go directly to a user's periscope profile.
I tried the following:
NSString *periscopeURL = @"periscope://";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:periscopeURL]];
I used similar code to open twitter ...and it worked.. not sure why it's not working for periscope.
any pointers are greatly appreciated!