Wrapping a web app up as an iPhone app? - iphone

The question says it all-how hard is it? Is it allowed? Any other comments?
Thanks!

It's easy -- just use a UIWebView. I don't know of any rules against it. I have one out there that got approved.

Although apps that are just a webview may get through to the store, you can make your app feel like an iphone app by just doing a very minimal amount of work. I think the best bet is to at least have a tab controller with the webview in one tab and an "About" page in another. Or possibly tab views that point to the various sections of the webpage. I think you and your users will be more pleased with the result if you do just a little UIKit stuff.

Related

Iphone storyboard application with game in webview

I made a HTML5 game for web browsers. Some of the players asked me if I could make it available as an App. Now I have a developer key, but just a VERY basic knowledge of Xcode / objective-c and I dont actually own an Apple computer. (But I can run Leopard/Xcode in VMWare).
Is it very bad practice to make a storyboard application that basically consists out of a splashscreen and a webview that loads my html game page with some added js/css to match the resolution?
Will Apple allow a game developed like this? It seems way easier to update etc...
Can I remove the bottom status bar from a webview using the meta tag? Or does that just work in safari, and will localstorage work?
Are there other, better, faster ways to port html5 to an app?
Sorry for the huge amount of questions, but I couldnt find satisfactory answers to all my questions, and I guess more people will have the same...
gr
Let me try to help you:
No, its not a "bad practice", but maybe for your app it's simple to do just a normal Single View Application. It doesn't mean that it's going to be wrong doing a storyboard, it;s just simpler.
Your App is only going to open a WebView with an URL, so, if you dont do anything weird, it's not going to be rejected.
If you are talking to the status bar, yes, it's possible to remove it easily.
I think that's the best way, just open a view with a webview on it. Another way is making your app call Safari with that URL, that's up to you (your app will go to the background and Safari will be called)
And an extra one: Its totally ok doing it with VMWare, I develop like that sometimes with my PC ;)

Twitter login without webview

In my app i have my own form for sign-in Twitter.
Is it possible login without standard webview (with popup from bottom) ??? I mean without framework which uses the most app from AppStore
Maybe some examples...
Thanks advance.
All hail WWDC: This is definitely what you want. That is, if you will use new APIs. This one only works with iOS 5.
Please remember to click the hollow check mark if this answer works for you. People are much more likely to answer your questions if you do.

Update iPhone app info without going through apple

i was wondering, i have a little experience making iPhone apps but no coding background in anything and was wondering.... Is there a way to update your iPhone app with new text, pictures, colors, links, etc. without manually doing it from Xcode then having to get the new version approved by apple.
I was hoping to be able to update it from possibly from my website. Any easy way to do this? Preferably the easiest solution. Thanks in advance
There is, but you have to design the application to do it from the start. Instead of reading from the app itself, the app reads from a content management system (CMS) or even just a text file stored on your website. Many apps work this way, but you will need to design the app with this in mind.
For the amount of things you need updated, I would create a iPhone optimized version of your website and in your app, all you would need is a web view that takes the user to your website. So to change content, you could just change your website and the user will think that the app is getting updated. One thing to keep in mind though, if the user doesn't have internet connection or if there internet is slow, the site my not show up at all or be very slow to respond and load. Hope this helps.

Navigation Based Template? Iphone app like Facebook App

Im creating my first iphone app and need some advice. Im basically developing a simple social app similar to the facebook iphone app.
Should I start with the Navigation Template? Or am i totally on the wrong path?
Thanks
Mock up how you want it to look, visualize things from your users perspective. That will dictate how you are going to approach things. Once you have that figured out in a way that's satisfactory, you're going to be looking at one of a few possibilities: Navigation based, tab based, or building a custom view.
three20

What are the wise and allowed ways to add advertisement to iPhone App?

I will be publishing an App in a few days. Initially I don't want to add advertisements, but can change my mind anytime, so I've thought this. Add a WebView to application and set its image to a dynamic web content. If no ads; I will display a simple logo, but when ads are available, replace the content with them. So there will be no modification to iPhone compiled binary.
Do you think it is allowed by Apple, and a good approach?
If you follow that approach, you will need to at least explain to Apple when you submit the app for review that ads may be enabled via a webservice.
Apple won't like it if you don't tell them that you might modify the apps feature set or behaviour after its approval.
You should be OK as long as you tell them about it.