iOS使用QQSDK分享图片到QQ空间

NSData *data = [[NSData alloc] initWithContentsOfURL:你的URL];

QQApiImageObject *object = [[QQApiImageObject alloc] initWithData:data previewImageData:data title:title description:description];

[QQApiInterface SendReqToQZone:req];

这样发送,分享的还是QQ而不是QQ空间。

需要在[QQApiInterface SendReqToQZone:req];前添加

uint64_t cflag =1;

 [object setCflag:cflag];

以上。

你可能感兴趣的:(iOS使用QQSDK分享图片到QQ空间)