I am using Google+ native sharing in my app.But its not working , i had tried the below code .
if ([[GPPSignIn sharedInstance] authentication]) {
id<GPPShareBuilder> shareBuilder = [[GPPShare sharedInstance] nativeShareDialog];
[shareBuilder setPrefillText:@"karthi!"];
[(id<GPPNativeShareBuilder>)shareBuilder attachImage:[UIImage imageNamed:@"off-1.png"]];
[shareBuilder open];
}
else
{
self.signInButton.hidden = NO;
}
Here i am getting the exception like this ,
Unknown class GPPNativeShareACLViewController in Interface Builder file.
Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key showCircleCount.'
Thanks in advance...