目錄:[Swift]Xcode實際操做html
本文將演示如何使用應用程序單例對象,發送郵件的功能。swift
在項目導航區,打開視圖控制器的代碼文件【ViewController.swift】ide
注:須要使用真機進行測試。post
1 import UIKit 2 3 class ViewController: UIViewController { 4 5 override func viewDidLoad() { 6 super.viewDidLoad() 7 // Do any additional setup after loading the view, typically from a nib. 8 9 //建立一個字符串,存儲一個電子郵箱, 10 //並留意它的前綴格式【mailto:】 11 let tel = "mailto:newsagency@163.com" 12 //而後將字符串轉換爲網址對象 13 let url = URL(string:tel) 14 //獲取應用程序單例對象, 15 //使用它打開網頁的功能, 16 //調出郵件編寫面板 17 UIApplication.shared.openURL(url!) 18 } 19 20 override func didReceiveMemoryWarning() { 21 super.didReceiveMemoryWarning() 22 // Dispose of any resources that can be recreated. 23 } 24 }