我在iPhone中使用Google Plus API成功发布了内容和(链接)URL。
使用以下代码:

googleShare =[[[GooglePlusShare alloc] initWithClientID:@"my key"] autorelease];


    [googleShare setDelegate:self];
     appDelegate.shareGOOGLe =googleShare;


    NSString *inputURL = @"";
    NSURL *urlToShare = [inputURL length] ? [NSURL URLWithString:inputURL] : nil;

    NSLog(@"%@",urlToShare);
    NSString *inputText = @"TEst Sharing testing from iOS 5.0";
    NSString *text = [inputText length] ? inputText : nil;
      NSLog(@"%@",text);

    [[[[googleShare shareDialog]
       setURLToShare:urlToShare]
      setPrefillText:shareMessge] open];

但我想发布图像到谷歌加。

谁能帮我?

提前致谢。

最佳答案

目前无法使用Google+ iOS SDK在Google+上共享图像。

关于iphone - 如何在iOS应用程序中在Google Plus上发布图像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11392037/

10-09 09:14