在iOS設備上打開“設置”應用程序;點擊“郵件、通訊錄、日歷”;
1.在iOS設備上打開“設置”應用程序;
2.點擊“郵件、通訊錄、日歷”;
3.點擊“添加帳戶”;
4.點擊“QQ郵箱”;
5.輸入QQ郵箱地址和密碼;
6.點擊“保存”;
7.完成QQ郵箱的添加。
代碼:
// Add QQ email account
UIApplication *application = [UIApplication sharedApplication];
NSURL *settingsURL = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
if ([application canOpenURL:settingsURL]) {
[application openURL:settingsURL options:@{} completionHandler:^(BOOL success) {
// Open settings
}];
}
// Select Mail, Contacts, Calendars
// Select Add Account
// Select QQ Mail
// Enter QQ email address and password
// Tap Save
本站系公益性非盈利分享網址,本文來自用戶投稿,不代表碼文網立場,如若轉載,請注明出處
評論列表(34條)