Ios swift – Do I need to provide contact usage description in Info.plist for making a phone call using UIApplication.shared.open with tel:// URL scheme in Swift?
I am using the following code to make a phone call in my Swift iOS app: if let phoneNumber = URL(string: "tel://8001968001") { UIApplication.shared.open(phoneNumber) } I want to know if I need to provide a contact usage description in the…