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 以在 UIWebView 中显示时,此 HTML 无法显示图像:
是否有它应该在的相对路径?
注意:我在调用中使用捆绑包作为基本路径来显示 html。
(我使用 MonoTouch)NSUrl path = new NSUrl (NSBundle.MainBundle.BundlePath);
不确定 MonoTouch 如何处理 URL,但由于它构建在 NSUrl 之上,您可能仍需要执行以下操作:
NSURL *myUrlPath = [NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]];
你不能只使用普通的 NSURL 构造函数......