Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只想从网络加载 html 并显示来自本地资源的图像。
这对我帮助很大,但是每个设备上资源的路径是否相同?还是取决于安装路径或类似路径? 在 Iphone 上的 UIWebView 中加载内容
每个设备的资源路径都不同,这就是您使用该功能的原因
[[NSBundle mainBundle] pathForResource:nameOfImage ofType:@"jpg"]
从 web 加载的 html 你可以做各种方式。最简单的就是:
NSString *myHTML = [NSString stringWithContentsOfURL:[NSURL URLWithString:@"http://web.site.com/file.html"]];