I attempt to create URL from components
var com = URLComponents()
com.scheme = "http"
com.host = "192.168.1.99"
com.port = 77
com.path = "/api/dosomething/55"
print("SHOW ME URl = \(com.url!))")
What I got is something like this
http://192.168.1.99:77/%EF%BB%BFapi/dosomething/55
Always got %EF%BB%BF
, in which case the url becomes invalid
I want to remove %EF%BB%BF
from the URL
How can I do that?