UIDocumentInteractionControllerを使用せずにそれを行うことができ、次の3つのメソッドを使用してInstagramに直接アクセスできます。
他のすべての有名なアプリと同じように機能します。コードはObjectivecで記述されているため、必要に応じて迅速に変換できます。あなたがする必要があるのはあなたのイメージをデバイスに保存してURLSchemeを使うことです
これを.mファイル内に追加します
#import <Photos/Photos.h>
まず、次の方法でUIImageをデバイスに保存する必要があります。
-(void)savePostsPhotoBeforeSharing
{
UIImageWriteToSavedPhotosAlbum([UIImage imageNamed:@"image_file_name.jpg"], self, @selector(image:didFinishSavingWithError:contextInfo:), NULL);
}
このメソッドは、画像をデバイスに保存するためのコールバックです。
- (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo: (void *) contextInfo;
{
[self sharePostOnInstagram];
}
画像がデバイスに保存されたら、保存したばかりの画像をクエリして、PHAssetとして取得する必要があります
-(void)sharePostOnInstagram
{
PHFetchOptions *fetchOptions = [PHFetchOptions new];
fetchOptions.sortDescriptors = @[[NSSortDescriptor sortDescriptorWithKey:@"creationDate" ascending:NO],];
__block PHAsset *assetToShare;
PHFetchResult *result = [PHAsset fetchAssetsWithMediaType:PHAssetMediaTypeImage options:fetchOptions];
[result enumerateObjectsUsingBlock:^(PHAsset *asset, NSUInteger idx, BOOL *stop) {
assetToShare = asset;
}];
if([assetToShare isKindOfClass:[PHAsset class]])
{
NSString *localIdentifier = assetToShare.localIdentifier;
NSString *urlString = [NSString stringWithFormat:@"instagram://library?LocalIdentifier=%@",localIdentifier];
NSURL *instagramURL = [NSURL URLWithString:urlString];
if ([[UIApplication sharedApplication] canOpenURL: instagramURL])
{
[[UIApplication sharedApplication] openURL: instagramURL];
} else
{
NSLog(@"No instagram installed");
}
}
}
そして、これをあなたのinfo.plistの下に置くことを忘れないでください LSApplicationQueriesSchemes
<string>instagram</string>