Reputation: 306
How to add an entry in to the iPhone system settings to add custom service authentication? How to link it with the My Application?
I am looking something similar to Facebook and Twitter options available in the System settings for authentication.
Upvotes: 0
Views: 33
Reputation: 36074
I think the set of authentication providers is limited to the contents of ACAccountTypes.h
:
ACAccountTypeIdentifierTwitter
ACAccountTypeIdentifierFacebook
ACAccountTypeIdentifierSinaWeibo
ACAccountTypeIdentifierTencentWeibo
ACAccountTypeIdentifierLinkedIn
Upvotes: 1
Reputation: 23634
You can't. Those are specifically built into iOS as part of the Accounts framework.
Upvotes: 1