2012-07-09 45 views
1

我在iPhone中使用Google Plus API成功發佈了內容和(鏈接)網址。 使用下面的代碼:如何在iOS應用程序中發佈Google Plus上的圖像

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]; 

但是我要發表圖片谷歌加。

任何人都可以幫助我嗎?

在此先感謝。

+2

分享圖片有什麼** **你試過嗎? – Pripyat 2012-07-09 11:11:29

+5

降級此問題的原因是什麼? – iChirag 2012-07-16 17:26:38

+1

你能指定你真正想要做什麼嗎?我認爲你還沒有正確地使用谷歌 – Chintan 2012-07-16 17:26:45

回答

5

目前無法通過Google+ iOS SDK共享Google+上的圖片。

+0

可以請你建議我怎樣才能分享圖像在谷歌+通過使用這種方法https://developers.google.com/+/mobile/ios/share/basic-share – 2016-10-10 13:02:20

1

@Chirag ...你應該看到用於iPhone/iPad的Flipboard應用程序。它在Google+帳戶上分享鏈接,評論和圖片。請隨時注意並讓我知道我是否有任何問題。

+0

看到他發佈答案的日期。快一年了。 – Jasmeet 2014-12-05 05:34:20

3

這是可能與谷歌共享圖片加

- (IBAction) didTapShare: (id)sender { 
    id<GPPNativeShareBuilder> shareBuilder = [[GPPShare sharedInstance] nativeShareDialog]; 
    [shareBuilder attachImage:[UIImage imageNamed:@"yourImagename.png"]]; 
    [shareBuilder open]; 
} 

https://developers.google.com/+/mobile/ios/share/

+0

這已棄用。不使用。 – Hima 2017-04-20 09:48:12

1

引用這些鏈接將幫助:

鏈接顯示的方式和內容可以共享。

  1. https://developers.google.com/+/mobile/ios/share/

在鏈接1的bottome,它提到「附加媒體共享帖子。您可以將照片和短片,以您的文章爲您的用戶分享他們的信息流。」

  • https://developers.google.com/+/mobile/ios/share/media
  • 鏈路2示出了代碼段共享的媒體;圖像和視頻

    以下是代碼片段在谷歌+

    - (IBAction) didTapShare: (id)sender { 
    id<GPPNativeShareBuilder> shareBuilder = [[GPPShare sharedInstance] nativeShareDialog]; 
    
    // Set any prefilled text that you might want to suggest 
    [shareBuilder setPrefillText:@"Achievement unlocked! I just scored 99 points. Can you beat me?"] 
    
    NSString *fileName = @"samplemedia1"; 
    [shareBuilder attachImage:[UIImage imageNamed:fileName]; 
    
    [shareBuilder open]; 
    } 
    
    相關問題