I am currently working with an application which has to set a profile image.Can I get profile picture from Gmail account in IOS 7?
Asked
Active
Viewed 50 times
2 Answers
0
for Profile picture in Gmail account........
after successful login in gmail use this code
GTLPlusPerson *gpUser = [[GPPSignIn sharedInstance] googlePlusUser];
if([[gpUser image] url])
{
UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:[[gpUser image] url]]]];
}

Ramesh
- 102
- 11