我正在尝试在我的React Native应用程序中使用ABNewPersonViewController.这是它在Objective-C中的使用方式:
ABNewPersonViewController *picker = [[ABNewPersonViewController alloc] init];
picker.newPersonViewDelegate = self;
UINavigationController *navigation = [[UINavigationController alloc] initWithRootViewController:picker];
[self presentViewController:navigation animated:NO completion:nil];
Run Code Online (Sandbox Code Playgroud)
我如何在React Native中执行此操作?我不能写一个桥接的UI组件,因为它是一个UIViewController,而不是UIView.
请不要告诉我重新实现它