在我的應用程序中,我在Instagram上分享圖像。它在我的應用程序中運行良好。在ios的Instagram上分享帶有圖片的文字
我正在使用以下代碼。
@property (nonatomic, retain) UIDocumentInteractionController *dic;
CGRect rect = CGRectMake(0 ,0 , 0, 0);
UIGraphicsBeginImageContextWithOptions(self.view.bounds.size, self.view.opaque, 0.0);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIGraphicsEndImageContext();
NSString *jpgPath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/test.igo"];
NSURL *igImageHookFile = [[NSURL alloc] initWithString:[[NSString alloc] initWithFormat:@"file://%@", jpgPath]];
// NSURL *igImageHookFile = [[NSURL alloc] initWithString:[[NSString alloc] initWithFormat:@"file://%@", screenshot]];
self.dic.UTI = @"com.instagram.photo";
self.dic = [self setupControllerWithURL:igImageHookFile usingDelegate:self];
self.dic=[UIDocumentInteractionController interactionControllerWithURL:igImageHookFile];
[self.dic presentOpenInMenuFromRect: rect inView: self.view animated: YES ];
- (UIDocumentInteractionController *) setupControllerWithURL: (NSURL*) fileURL usingDelegate: (id <UIDocumentInteractionControllerDelegate>) interactionDelegate {
UIDocumentInteractionController *interactionController = [UIDocumentInteractionController interactionControllerWithURL: fileURL];
interactionController.delegate = interactionDelegate;
return interactionController;
}
現在我還想分享一些文字與圖像。
如下圖所示。在「編寫標題」中,我想爲例如一些默認的自定義文本。 「分享這張照片」。
我該怎麼做?
在此先感謝...
編輯
我從我的應用程序打開Instagram的分享圖像,它工作正常。
但我可以檢查用戶是否已成功共享它嗎?
表示我想在用戶成功分享圖像時在我的數據庫中執行某些操作。
我該怎麼做?
嘿,這不適合我。 –
添加文本和圖像的任何其他設置..? –