我正在使用'react-native-document-picker'库并使用iphone 6模拟器。 我得到一个例外:每当我点击按钮时,'应用程序初始化文档选择器都缺少iCloud权利'。我该如何解决这个问题? 请建议我任何解决方案。提前谢谢。
import { DocumentPicker, DocumentPickerUtil } from 'react-native-document-picker';
export class EditInformation extends Component {
docPicker() {
DocumentPicker.show({
filetype: [DocumentPickerUtil.images()]
},(error, res) => {
});
}
render() {
return (
<View>
<Button onPress={() => this.docPicker()}>
<Text> Upload image </Text>
</Button>
</View>
)}
}
答案 0 :(得分:0)
首先,您需要拥有Apple付费开发者帐户,并使用Xcode的功能设置设置您自己的iCloud帐户。
答案 1 :(得分:0)
我认为你需要添加这个
import MobileCoreServices
<。p>位于.m文件的顶部