list of iphone application under single application - iphone

i am developing an application in iPhone, where i need to implement my 5 application under single application.
i.e. i have 5 different application's source code and i need to develop single application which will list these 5 application icon(shortcut) to each. on clickkin
i tried Google but i cant find anything related to that.
i find this but i don't know "UI presentation".
if any one knows about than please help.
Thanks.

Take a look at UITabBar which provides a convenient way to switch between Application views - and works best with up to 5 top-level views. You can then dig into your 'separate' applications from each top-level Tabbed view by incorporating a UINavigationBar into each.

Related

iOS 7 CRUD Application - Interface to input data

guys!
I've been studying iOS development for a few days, and I wanted to create a CRUD application to make sure I am understanding the concepts.
Well, I wanted to create a interface to input data similar to the Phone app, where user can insert a new contact. In my understanding, it seems to be a table view. However, every tutorial I find about table views are related to displaying data and not inputing it. Am I right?
I'm not expecting any code sample or anything like that, I just want to know how can I provide a good experience similar to the one in Phone App.
The Contacts app on the iPhone is built on UITableViews. Apple does not provide any guideline for your question. Use them or don't, it's up to you.
It might be quicker though to use a UITableView in your case, as you may need to present/edit much information and the scrolling would already be handled by the system.

Making web browser without features in iOS 5

I'm very new to iOS web programming so I need help.
I want make an app which shows a map with stores (I actually made it with MapKit) on 1 tab of Tab Bar Controller. On 2-4 I want provide some info (sales, news, new arrivals, etc). I think I could make 3 web browsers without any features, such as: search, url, back and forward buttons. I'll load prepared URLs and show info without downloading it.
My question is: can you make a web browser in such way? If so, tell me please how or give a link.
UIWebView is what you are looking for. You can create viewControllers with webViews and add them to the tabBarController to get what you want.

iPhone :Can we add more than One application in a Single application

I do have an Idea to integrate with my application. I want to create multiple application within a single one application.
Like
and application containing Weather application as well as image processing application + camera based application.
I want to know Is this thing possible with iphone application?
Please suggest me is this possible with iPhone app development and is it allowed by apple or not.
thanks for your suggestion in advance.
Consider these things as features. Weather information is a feature, image processing is another and camera in another. You can create any number of features in your app. If that is what you have meant by application then that is technically possible and seems also OK with Apple. This is not 3 different applications, rather it's one application with three different features. No matter how many features you have, iOS will treat that as a single application(a single app bundle with a single executable file).
But if are asking whether there is any way to combine separate applications(separate projects, separate app bundles with separate executables) then that is not possible.
Note: Personally I think adding completely different features in a single app is not a good idea.
Go to App Store and search for this app, App Tool Box - All in One. It's exactly the same structure as you mentioned in your post. And it only costs $0.99.
Sure, you can do it. I don't think Apple has anything against an app that does more than one thing. As long as none of those things breaks any of their rules.

How to I make a navigation-based app?

Yes, I know, most of you are thinking I'm an idiot, butt (kidding) I'm not. I've been searching everywhere for something on how to fully make a navigation-based iphone app, but all I've found is how to set up table views or navigation controllers. I haven't found anything on how to create a data model (something simple from arrays and dictionaries, SQLite and CoreData are a bit out of my scope) or navigate it. Does anyone know of any tutorials or anything like that? Thanks.
The key phrase you're looking for is a 'drill down' pattern.
Apple has a great example (with full sample application) of a drill-down application with a basic data controller:
http://developer.apple.com/iphone/library/samplecode/SimpleDrillDown/Introduction/Intro.html
The Stanford iPhone Development Course provides good information on how to set-up a navigation based app. Specifically, lectures 7 - 9 deal with the topics you were interested in. You can find the lectures on iTunes U. The course assignments and handouts are also available on the course website.

Regarding iPhone Application Design Document

I am just entered into iPhone Application Development. I have to start the work on iPhone Application. And i have some Requirements Specification for particular application. Now for a starting phase i want to prepare a Design Document for that application. So, anyone can suggest me what i have to include in any mobile or iPhone Application ? If you have any same design document then please provide some link, if possible.
Or else, if you have any other idea for starting the application, then also you can suggest.
Thanks in advance.
As a first step I'd always get the user interface down on paper with some mock-ups of screens, location of controls etc.
From that, I usually write in how the transitions between views are triggered and what information is flowing between different parts of the application with regards to the user interface.
Then, I decide on how I need to store the data in my application (usually a separate class) and how this will be accessed from the rest of the application.
A 3 or 4 page document will cover most small apps. I find doing the UI mock-up and basic data is enough to get going and get a bare bones app working.