If you want to integrate your application tightly into Google+, I would recommend using their SDK described here: https://developers.google.com/+/mobile/ios/
Bit for sharing: https://developers.google.com/+/mobile/ios/#share_on_google
Create your shared object:
GooglePlusShare *share =
[[[GooglePlusShare alloc] initWithClientID:clientID] autorelease];
share.delegate = self;
appDelegate.share = share;
IBAction:
- (IBAction) didTapShare: (id)sender {
[[[[share shareDialog]
setURLToShare:[NSURL URLWithString:@"URL_TO_SHARE"]]
setPrefillText:@"YOUR TEXT HERE"] open];
[[share shareDialog] open];
}
URL- Google+:
- (BOOL)application: (UIApplication *)application
openURL: (NSURL *)url
sourceApplication: (NSString *)sourceApplication
annotation: (id)annotation {
if ([self.share handleURL:url
sourceApplication:sourceApplication
annotation:annotation]) {
return YES;
}
}