How do I access the host machine itself from the iPhone simulator

前端 未结 2 1004
盖世英雄少女心
盖世英雄少女心 2020-12-29 00:39

I\'m developing an app that connects to a web service for most of it\'s operations. As a shortcut, I\'d like to run a copy of my development server on my machine. Question i

2条回答
  •  旧时难觅i
    2020-12-29 01:21

    In swift 5 just call:

    http://localhost:/file_path 
    

    but you will need to add this part to the project Info.plist.

    NSAppTransportSecurity
    
        NSAllowsArbitraryLoads
            
      
    

    Otherwise this error is going to happen.

    Cannot start load of Task . since it does not conform to ATS policy.

提交回复
热议问题