我们可以在一个请求中在 Twitter 上分享多张照片,或者我们一次只能通过 iOS 中的 Twitter API 上传一张图片吗?我查看了 Twitter API 的文档,但没有找到此类信息。
问问题
623 次
1 回答
2
您一次只能分享一张图片。所以要分享多张图片,您必须循环播放。
我做了如下的事情来分享 3 张图片
switch (indexImage) {
case 0:
img = imgBar;// image name
break;
case 1:
img = [self captureView:graphView inSize:graphView.frame.size];
break;
case 2:
img = [self captureView:otherGraphView inSize:otherGraphView.frame.size];
break;
default:
break;
}
于 2013-11-29T05:23:33.033 回答