我想通过ActivityViewController
在iOS模拟器(iPhone X-12.1)上保存图片。
我使用react_native的ActionSheetIOS.showShareActionSheetWithOptions
API,但“保存图像”未出现在ActivityViewController上。
NSPhotoLibraryUsageDescription
和NSPhotoLibraryAddUsageDescription
已在Info.plist
中设置。
<View style={styles.isCenter}>
<Button
title="save"
onPress={Platform.OS === 'ios'
? () => ActionSheetIOS.showShareActionSheetWithOptions(
{ url: 'https://facebook.github.io/react-native/img/header_logo.png' },
() => {},
() => console.tron.log('success.'),
) : () => {
// abbreviation for android
}
}
/>
</View>