解決方法:
在AppDelegate.m文件中,把一下代碼中的localhost
改為你電腦的IP地址摹芙,并且保證你的真機(jī)連接的是同一個(gè)網(wǎng)絡(luò)(例如:連接同一個(gè)路由的網(wǎng)絡(luò))淹朋。
在mac終端中使用命令:ifconfig 可以查看本機(jī)IP
原:
jsCodeLocation = [NSURL URLWithString:@"http://localhost:8081/index.ios.bundle?platform=ios&dev=true"];
修改為
jsCodeLocation = [NSURL URLWithString:@"http://你的mac的IP:8081/index.ios.bundle?platform=ios&dev=true"];
例如:
jsCodeLocation = [NSURL URLWithString:@"http://192.168.0.54:8081/index.ios.bundle?platform=ios&dev=true"];