如何在活动视图控制器(ActionSheetIOS.showActionSheetWithOptions)上显示“保存图像”?

时间:2019-02-08 02:54:27

标签: react-native react-native-ios

我想通过ActivityViewController在iOS模拟器(iPhone X-12.1)上保存图片。

我使用react_native的ActionSheetIOS.showShareActionSheetWithOptions API,但“保存图像”未出现在ActivityViewController上。

NSPhotoLibraryUsageDescriptionNSPhotoLibraryAddUsageDescription已在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>

0 个答案:

没有答案