如何开始使用 iPhone 的网络查看器开发网络应用程序?

发布于 2024-12-07 20:30:07 字数 250 浏览 1 评论 0原文

如何使用 iPhone 的网络查看器开发应用程序? 就像在 Andriod 中一样,我们可以使用 webviewer 开发应用程序。

它将帮助我使用 Javascript 开发移动应用程序。

请注意:- 我只想将应用程序的核心逻辑 JS 文件保留在手机“内部”。我不想托管我的应用程序并将用户重定向到任何地方。

编辑:- 我想使用 HTML、CSS 和 Javascript 开发一个移动应用程序。我只想将我的应用程序逻辑保留在手机内。

How to develop an iPhone app using its webviewer?
Like in Andriod we can develop an app using webviewer.

It will help me in developing mobile app using Javascript.

Please NOTE:- I want to keep the core logic JS FILE of APP "inside" the phone only. I don't want to host my application and redirect the user any where.

EDIT:- I want to develop a mobile application using HTML,CSS and Javascript. I want to keep my APP LOGIC inside the phone only.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

绝對不後悔。 2024-12-14 20:30:07

是的,在 iOS 中,您可以使用 UIWebView 显示任何 HTML 内容、HTTP 链接等。您还可以从 Objective C 代码调用 javascript,反之亦然...

HTML 数据 -

   NSString *html = @"<html><head><title>Should be half</title></head><body>I wish the answer were just 42</body></html>";  
    [webView loadHTMLString:html baseURL:nil];

从 ObjectiveC 代码评估 javascript -

NSString *title = [webView stringByEvaluatingJavaScriptFromString:@"document.title"];  

此技术不受限制到一句话,或访问简单的属性。下面是按顺序执行的两行 JavaScript 代码的示例,如您所料:

[webView stringByEvaluatingJavaScriptFromString:@"var field = document.getElementById('field_2');" "field.value='Multiple statements - OK';"];

您还可以通过这种方式调用 JavaScript 函数。如果您想调用正在下载的网页中尚不存在的 JavaScript 函数,您可以使用此技术自行“注入”它:

[webView stringByEvaluatingJavaScriptFromString:@"var script = document.createElement('script');"
                         "script.type = 'text/javascript';"
                         "script.text = \"function myFunction() { "
                            "var field = document.getElementById('field_3');"
                            "field.value='Calling function - OK';"
                         "}\";"
                         "document.getElementsByTagName('head')[0].appendChild(script);"];

[webView stringByEvaluatingJavaScriptFromString:@"myFunction();"];

查看 - UIWebView 中的 JavaScript

Yes in iOS you can use UIWebView to display any HTML content, HTTP links etc. You could also invoke javascript from your Objective C code or vice versa...

HTML data -

   NSString *html = @"<html><head><title>Should be half</title></head><body>I wish the answer were just 42</body></html>";  
    [webView loadHTMLString:html baseURL:nil];

To evaluate javascript from ObjectiveC code -

NSString *title = [webView stringByEvaluatingJavaScriptFromString:@"document.title"];  

This technique is not limited to one-liners, or accessing simple properties. Here’s an example of two lines of JavaScript code executed in order, as you would expect:

[webView stringByEvaluatingJavaScriptFromString:@"var field = document.getElementById('field_2');" "field.value='Multiple statements - OK';"];

You can also call JavaScript functions this way. And if you want to call a JavaScript function that does not already exist in the web page that you’re downloading, you can “inject” it yourself with this technique:

[webView stringByEvaluatingJavaScriptFromString:@"var script = document.createElement('script');"
                         "script.type = 'text/javascript';"
                         "script.text = \"function myFunction() { "
                            "var field = document.getElementById('field_3');"
                            "field.value='Calling function - OK';"
                         "}\";"
                         "document.getElementsByTagName('head')[0].appendChild(script);"];

[webView stringByEvaluatingJavaScriptFromString:@"myFunction();"];

Check out - Javascript in UIWebView

戴着白色围巾的女孩 2024-12-14 20:30:07

要补充 @RustyRyan 所说的内容,您还可以使用 PhoneGap 等框架。它们是使用网络技术创建应用程序的绝佳方式

http://www.phonegap.com

To add on to what @RustyRyan said, you can also use frameworks like PhoneGap. They are excellent way to create apps using web technologies

http://www.phonegap.com

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文