从原生传递数据到反应原生

时间:2017-11-08 13:54:39

标签: ios file react-native properties

我的申请表包含以下步骤:

  1. 将具有自己扩展名的文件发送到用户的电子邮件
  2. 当文件打开时,应用程序启动(用户选择后)
  3. 现在我想使用文件中的数据。
  4. 但是如何?

    我在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”?

0 个答案:

没有答案