I am working on a app which could be launched over a URL. I have already defined my url scheme using xcode on info page. I filled for identifier my Bundle identifier and for URL Schemes myapp.
Now if I try to open in safari myapp://foo, it launches my app and stops at my breakpoint in
- (BOOL)application:(UIApplication *)application
openURL:(NSURL *)url
sourceApplication:(NSString *)sourceApplication
annotation:(id)annotation
method.
Problem is annotation, url, application, sourceapplication parameters are nil. So I can not pass parameters...

urlvariable is nil, or that the parameterString ofurl(since it's an NSURL) is nil? How are you determining that it's nil? - Billy Lazzaro