我在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];
但是我要發表圖片谷歌加。
任何人都可以幫助我嗎?
在此先感謝。
分享圖片有什麼** **你試過嗎? – Pripyat 2012-07-09 11:11:29
降級此問題的原因是什麼? – iChirag 2012-07-16 17:26:38
你能指定你真正想要做什麼嗎?我認爲你還沒有正確地使用谷歌 – Chintan 2012-07-16 17:26:45