How to make a kiosk app iPhone [closed] - iphone

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How can i create a kiosk app for the iPhone?
What is the best way to upload content in sections html?

HTML or PDF would work fine. You can use a UIWebView to display both formats. Or if there is a standard way of laying everything out that will not change, you can use XML (or RSS).

Related

Designing webpage for iphone, can you change the html? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm linking to an alternate .css for the iphone, but is it possible to link to an alternate .html? I'm not overly keen on going through the original html, although I will if I have to.
Thanks for any help,
Tom
Using this detect handheld device in jquery you will be able to know what kind of handheld is loading your page and than you may redirect the user to your new html page.
Something like:
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent) )
{
location.href = "new-page.html";
}

Capture iPhone/iPad number of pages [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm new to iOS development and I'm trying to understand if is it's possible to capture into my code the number of pages an iPhone/iPad has.... I'm referring to the pages created by the user as more apps are installed on the device... Cheers!
if you mean the number of pages on the iphone home dash board, then no, you will not be able to query that information legally

How to download PDF from a website in the app using iPhone SDK? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How can I download PDF from a website and store it on the iPhone App?
Please let me know.
The way I've done it is download it as a .html file, draw it into a webview, then print it into a pdf.

How to create .webarchive on iPhone? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Do you know any method to create .webarchive file in iPhone ?
I am using ASIWebPageRequest to download a web page and i want save it in .webarcive format.
you need to check out this great project - https://github.com/takebayashi/STWebArchiver

monotouch startup window [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
just wondering how to set startup window of monotouch application...
Probably the same way you do in the standard environment. Create a image, put it in resources with the name "default.png". The application objects loads and displays it automatically.(Edit: Actually, I think the system displays the image while the app loads.)