Sunday, September 15, 2013

iOS - URL SCHEME


To configure URL SCHEME

In Xcode project, info.




Open the app in code:

  NSString *format = @"birdland://";
    NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:format]];
   
    [[UIApplication sharedApplication] openURL:url];

No comments:

Post a Comment