Launch Apple Mail App from within my own App?

后端 未结 15 2316
心在旅途
心在旅途 2020-11-29 01:59

What I already found is

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@\"mailto:\"]];

But I just want to open the Mail ap

15条回答
  •  悲哀的现实
    2020-11-29 02:32

    Swift 5 version:

    if let mailURL = URL(string: "message:") {
        if UIApplication.shared.canOpenURL(mailURL) {
            UIApplication.shared.open(mailURL, options: [:], completionHandler: nil)
        }
    }
    

提交回复
热议问题