Tagged Questions
2
votes
1answer
748 views
How to open maps from app and drop an arbitrary pin
I've read several questions about this, but no answer seems to fit. If I want to open maps from my app, with an arbitrary location defined by coordinates and an arbitrary name, to use as a title in a ...
0
votes
1answer
146 views
Xcode - I can't run the whole methods from AppDelegate
I'm using custom URL schemes to open my app, then get the link and run in a method. But I can't really run the method.
For example, I can't load web views or change labels or text fields. So how do ...
0
votes
1answer
224 views
Launch app from URL issue
I'm trying to launch my app using URL from Safari.
-(BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
...
0
votes
0answers
288 views
How can you use handleOpenUrl (URL Schemes) in Xcode (SenTestingKit) Unit Tests
I currently have my iOS application linking with the Dropbox SDK and it's encapsulated this into a single object. My URL Schemes and handleOpenUrl all works fine in my application.
I'm now trying to ...