react-native 保存图片到本地

前端之家收集整理的这篇文章主要介绍了react-native 保存图片到本地前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

另一个很常见的需求,
官方文档的描述十分含糊,这里记录一下
官方的AwesomeProject/node_modules/react-native/Libraries/CameraRoll
按照Linking Libraries
的步骤把链接添加到Xcode工程里面
接下来就简单了

PressSave:function(){                  CameraRoll.saveImageWithTag('http://facebook.github.io/react/img/logo_og.png',function(data) {
            console.log(data);
            AlertIOS.alert(
                'Foo Title','成功保存'
            )

        },function(err) {
            console.log(err);
        });
    },

把这个方法设置为TouchableHighlight的onpress属性就可以了

原文链接:https://www.f2er.com/react/307370.html

猜你在找的React相关文章