我想知道如何将 jQuery 插件(https://github.com/thegrubbsian/jquery.ganttView)添加到 UIWebView 中,因为我想用它来显示甘特图?
请告诉我是否应该遵循任何教程或步骤?
谢谢,卡尼什卡。
我想知道如何将 jQuery 插件(https://github.com/thegrubbsian/jquery.ganttView)添加到 UIWebView 中,因为我想用它来显示甘特图?
请告诉我是否应该遵循任何教程或步骤?
谢谢,卡尼什卡。
可以有一个.html
像 -
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>TITLE</title>
<script type="text/javascript" src="Plugin.js"></script>
<link type="text/css" href="Plugin.css" rel="stylesheet"/>
</head>
<body>
<div id="Pluginwrapper">
<div id="Plugincontainer"></div>
</div>
</body>
</html>
在 App 包中拥有.html file, .js file and .css
(即所有插件文件)文件,为了在 中显示内容UIWebView
,只需在 Xcode 的Build Phases 选项卡.html
中将文件和.js
文件设置为Bundle Resources。
然后使用 -
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"htmlfile" ofType:@"html"] isDirectory:NO]]];