Can't show Image by URI in React Native iOS Simulator

后端 未结 5 1579
情话喂你
情话喂你 2020-12-17 19:12

I\'m using react-native 0.28.0

I\'m trying to show an image on iPhone simulator according to this tutorial: http://www.appcoda.com/react-native-introduction/

5条回答
  •  再見小時候
    2020-12-17 19:32

    just edit list.info file at field: "NSAppTransportSecurity" into ios of React Native such as:

    
        NSExceptionDomains
        
            localhost
            
                NSExceptionAllowsInsecureHTTPLoads
                
            
            resizing.flixster.com
            
                
                NSIncludesSubdomains
                
                
                NSTemporaryExceptionAllowsInsecureHTTPLoads
                
                
                NSTemporaryExceptionMinimumTLSVersion
                TLSv1.1
            
        
    
    

提交回复
热议问题