Reputation: 318
I need to get an user's email address that used in Mail.app.
How can I do it with the iPhone SDK?
Thank you!
Upvotes: 4
Views: 5180
Reputation: 33
welcome to IOS, just assume that you are not allowed to do anything that is related to the private user info ( email address \ phone number )
another workaround is to save the user phone number and email address in the address book and get that from there
Upvotes: 1
Reputation: 26468
Have a look at ABGetMe for iOS. Specifically, the AccountEmailAddresses
function returns the list of configured e-mail addresses.
Upvotes: 2
Reputation: 10555
Short answer: you can't. You should prompt the user for their email address if you need it.
Upvotes: 5