I am opening the app by using this code
UIApplication.shared.open(URL(string: "sms:")!, options: [:], completionHandler: nil)
but I only want to open message app not with send message controller can I do it in ios swift
video attached: https://www.sendspace.com/file/j1yijj
From what I can tell, this isn't possible since the only way to open native iOS apps is through the URL schemes provided by Apple. As far as I'm aware, "sms" is the only URL scheme that opens the Messages app and it always shows the compose message prompt regardless of whether a phone number is provided or not :(