react-native-unionpay icon indicating copy to clipboard operation
react-native-unionpay copied to clipboard

Results 2 react-native-unionpay issues
Sort by recently updated
recently updated
newest added

所有的外链APP回掉都会走 RCTOpenURLNotification 这个通知,而在CFBundleURLTypes 你无法判断CFBundleURLName 具体是在 CFBundleURLTypes 里第几个位置 建议改成支付宝的判断方法 做如下修改 NSArray *urlTypes = [[[NSBundle mainBundle] infoDictionary] valueForKey:@"CFBundleURLTypes"]; for (NSDictionary *item in urlTypes) { NSString *name = item[@"CFBundleURLName"]; if ([name isEqualToString:@"upay"]) {...