91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iPhone How-to:如何發送郵件

發布時間:2020-06-17 04:53:47 來源:網絡 閱讀:1262 作者:benjielin 欄目:開發技術

iPhone提供了內嵌的Mail應用以支持電子郵件相關操作,此外還提供了MFMailComposeViewController以實現了在當前應用內編輯和發送郵件。使用內嵌的Mail應用還是MFMailComposeViewController就取決于實際的需求了,實現方法分別是:

  • 調用內嵌Mail應用

- (void) sendEmailTo:(NSString *)to withSubject:(NSString *)subject withBody:(NSString *)body {
    NSString *mailString = [NSString stringWithFormat:@"mailto:?to=%@&subject=%@&body=%@",
                            [to stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding],
                            [subject stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding],
                            [body stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding]];
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:mailString]];
}

需要注意的是這里使用了NSString的stringByAddingPercentEscapesUsingEncoding接口,其作用就是在URL字符串中進行特殊字符的替換,比如將空格替換成%20之類的。

 

  • 使用MFMailComposeViewController支持應用內郵件發送

- (IBAction)sendMail{
    MFMailComposeViewController *controller = [[MFMailComposeViewController alloc] init];
    controller.mailComposeDelegate = self;
    [controller setSubject:@"In app email..."];
    [controller setMessageBody:@"...a tutorial from mobileorchard.com" isHTML:NO];
    [self presentModalViewController:controller animated:YES];
    [controller release];
}

 

此外還需要實現mailComposeController:didFinishWithResult:error:的協議以進行發送成功或者失敗后的處理:

- (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error {
    ...
    [self dismissModalViewControllerAnimated:YES];
}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

灌南县| 南阳市| 明光市| 南郑县| 岑巩县| 郎溪县| 青阳县| 临潭县| 罗平县| 丹江口市| 扶沟县| 卢龙县| 定西市| 鱼台县| 陈巴尔虎旗| 合江县| 耒阳市| 理塘县| 五原县| 德惠市| 金门县| 白沙| 镇雄县| 黄梅县| 会理县| 万山特区| 伊吾县| 卢氏县| 肇源县| 普兰店市| 平乡县| 阿坝| 清远市| 乌拉特中旗| 怀安县| 湖南省| 旅游| 梓潼县| 平泉县| 堆龙德庆县| 思南县|