ios prefs url path scheme to mail

2019-06-25 23:04发布

问题:

I can't seem to find anywhere the path to Seetings-> Mail,Contacts,Calendars url scheme path.

I've tried : @"prefs:root=Mail,Contacts,Calendars" but it's only opening Settings and center the table to Mail,Contacts,Calendars.

Any idea how to go into that?

Thanks

回答1:

Try this url : [NSURL URLWithString:@"prefs:root=ACCOUNT_SETTINGS"]

You can also try : [NSURL URLWithString:@"prefs:root=ACCOUNT_SETTINGS&path=ADD_ACCOUNT"]; Directly for Add Account page in setting.

Let me know if you have any issue.