美文网首页
记录:接入微信分享,图片来自服务器返回的URL

记录:接入微信分享,图片来自服务器返回的URL

作者: Jacky__燊 | 来源:发表于2018-12-10 13:59 被阅读0次

微信分享设置图片的api有两个:

WXMediaMessage *urlMessage = [WXMediaMessage message];

       [urlMessage setThumbData:]
      [urlMessage setThumbImage:]

根据业务需要可以设置本地image也可以来自后台服务器

如果是后台返回的URL 处理:

NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:fileURL]];

UIImage *local_image = [UIImage imageWithData:data];

[urlMessage setThumbImage:local_image]

相关文章

网友评论

      本文标题:记录:接入微信分享,图片来自服务器返回的URL

      本文链接:https://www.haomeiwen.com/subject/flvrhqtx.html