Sharekit图片上传

时间:2011-10-16 17:23:30

标签: ios xcode uiimageview sharekit

请帮助解决通过Sharekit上传截图照片的问题:

UIGraphicsBeginImageContext(parentPreviewImageView.frame.size);
//UIGraphicsBeginImageContext(previewImageView.frame.size);

[self.parentPreviewView.layer renderInContext:UIGraphicsGetCurrentContext()];

imageCopy = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

//UIImageWriteToSavedPhotosAlbum(imageCopy, self, nil, nil);
UIImageWriteToSavedPhotosAlbum(imageCopy, self, @selector(imageSavedToPhotosAlbum:didFinishSavingWithError:contextInfo:), nil);

我应该如何将上面的代码组合到以下行? 非常感谢。

SHKItem *item = [SHKItem image:screenshot.image title:@""];

1 个答案:

答案 0 :(得分:0)

而不是:

SHKItem *item = [SHKItem image:screenshot.image title:@""];

<强>执行:

SHKItem *item = [SHKItem image:imageCopy title:@""];

在你的代码中我没有看到任何屏幕截图变量,所以我预计这只是一个错误的变量问题。