0

Please excuse what is no doubt a beginners question, but I'm wondering if it is possible to link directly from a button in an iOS7 app directly to a moments page within the iphones standard Photo app. ie that you press the button and the lastest videos moment page in the Photos app opens directly ?

Shaik Riyaz
  • 11,204
  • 7
  • 53
  • 70
Ben K
  • 36
  • 3

1 Answers1

0

Ok found the solution to at least get to the photos app

NSString *stringURL = @"photos-redirect:";
NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];
Ben K
  • 36
  • 3