ガント チャートを表示したいので、 jQuery プラグイン ( https://github.com/thegrubsian/jquery.ganttView ) を UIWebViewに追加する方法を知りたいですか?
従うべきチュートリアルや手順があれば教えてください。
ありがとう、カニシュカ。
ガント チャートを表示したいので、 jQuery プラグイン ( https://github.com/thegrubsian/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>
.html file, .js file and .css
(つまり、すべてのプラグイン ファイル) ファイルを App バンドルに入れ、コンテンツを に表示するにはUIWebView
、.html
ファイルと.js
ファイルをXcode のBuild Phases タブでBundle Resourcesとして作成します。
次に使用します-
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"htmlfile" ofType:@"html"] isDirectory:NO]]];