我的申请表包含以下步骤:
但是如何?
我在Xcode的AppDelegate.m文件中添加了以下功能。
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
if (url){
NSString *information = [NSString stringWithContentsOfURL:url encoding:NSUTF8StringEncoding error:nil];
UIViewController *rootViewController = [UIViewController new];
//this is not the way to display this on the screen
NSLog(@"The file contained: %@",information);
}
return YES;
}
是否可以在react-native中使用此信息字符串?在我的react-native应用程序中,我需要添加什么才能将其用作“this.props.information”?