我正在尝试处理 UIApplication 通知以在当前打开的视图中获取 URL 方案。我已经尝试了几个通知,但我不知道哪个对象包含 URL 方案。
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
//[nc addObserver:self selector:@selector(DocumentToDropboxDelegate) name:UIApplicationWillResignActiveNotification object:nil];
[nc addObserver:self selector:@selector(DocumentToDropboxDelegate) name:UIApplicationDidFinishLaunchingNotification object:nil];
有人可以帮我解决这个问题。