简体   繁体   English

iPhone:在Instagram上上传图片

[英]iPhone:Upload image on Instagram

I have written the code to upload image on instagram which is as follows: 我已经编写了将图片上传到instagram的代码,如下所示:

CGRect rect = CGRectMake(20 ,20 , 200, 200);
    UIGraphicsBeginImageContextWithOptions(self.view.bounds.size, self.view.opaque, 0.0);
    [self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIGraphicsEndImageContext();

    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *jpgPath = [documentsDirectory stringByAppendingPathComponent:@"after2sm.ig"];

    NSString *fileURL = [NSString stringWithFormat:@"file://%@",jpgPath];
    NSURL *igImageHookFile = [NSURL fileURLWithPath:fileURL];

    self.dic.UTI = @"com.instagram.photo";

    self.dic = [self setupControllerWithURL:igImageHookFile usingDelegate:self];
    self.dic=[UIDocumentInteractionController interactionControllerWithURL:igImageHookFile];

    [NSDictionary dictionaryWithObject:@"My Caption" forKey:@"InstagramCaption"];
    [self.dic presentOpenInMenuFromRect:rect inView:self.view animated:YES];

But it opens a actionsheet with "instagram" option but when i click on that nothing happens..can you please help me 但是它打开了一个带有“ instagram”选项的动作表,但是当我单击该动作表时,什么都没有发生..你能帮我吗

Try this , In this code set your image in imgUpload object 试试这个,在这段代码中在imgUpload对象中设置图像

    - (IBAction)InstagramButtonClick
   { 

        CGRect rect = CGRectMake(0.0, 0.0, 612, 612);
        UIGraphicsBeginImageContext(rect.size);
        [imgUpload drawInRect:rect];

        UIImage *img = UIGraphicsGetImageFromCurrentImageContext();

        UIGraphicsEndImageContext();
        NSString  *savePath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/test.igo"];
        [UIImageJPEGRepresentation(img, 1.0) writeToFile:savePath atomically:YES];

        NSURL *igImageHookFile = [[NSURL alloc] initWithString:[[NSString alloc] initWithFormat:@"file://%@", savePath]];


        self.dic.UTI = @"com.instagram.photo";
        self.dic = [self setupControllerWithURL:igImageHookFile usingDelegate:self];

        self.dic=[UIDocumentInteractionController interactionControllerWithURL:igImageHookFile];
          self.dic.annotation = [NSDictionary dictionaryWithObject:@"your message" forKey:@"InstagramCaption"];
        [self.dic presentOpenInMenuFromRect: CGRectZero    inView: self.view animated: YES ];

    }

//Add the delegate UIDocumentInteractionControllerDelegate and following is a delegate method //添加委托UIDocumentInteractionControllerDelegate ,以下是委托方法

- (UIDocumentInteractionController *) setupControllerWithURL: (NSURL*) fileURL usingDelegate: (id <UIDocumentInteractionControllerDelegate>) interactionDelegate {
        UIDocumentInteractionController *interactionController = [UIDocumentInteractionController interactionControllerWithURL: fileURL];
        interactionController.delegate = interactionDelegate;
        return interactionController;

}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM