Edi 0
Edi 0

Reputation: 212

Which Style i should use for my iphone app

Hi i am new to IOS programming. I want to Make a brochure app only read function no user inputs. Which Style i should go for Window based or View Based. I downloaded Xcode it doesn't have Window Based application at has View based only? Can you also tell me good tutorials to learn app development

Upvotes: 2

Views: 172

Answers (2)

Gavin Hope
Gavin Hope

Reputation: 2193

You said that you're new to iOS development; it sounds like you're very new to iOS development?

Do you have a developer account? The freely available documentation on developer.apple.com is very good. It would certainly do no harm to start there. As an example, here are a few of the guides they have on offer:

Start Developing iOS Apps Today https://developer.apple.com/library/ios/#referencelibrary/GettingStarted/RoadMapiOS/chapters/Introduction.html

iOS Programming Guide https://developer.apple.com/library/ios/#documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/Introduction/Introduction.html#//apple_ref/doc/uid/TP40007072

View Controller Programming Guide for iOS https://developer.apple.com/library/ios/#featuredarticles/ViewControllerPGforiPhoneOS/Introduction/Introduction.html#//apple_ref/doc/uid/TP40007457

The developer videos are also very good: https://developer.apple.com/videos/

You need to sign into your developer account for those...

Play around with a few things. Look at some of the sample code. Write some basic stuff. It might be a good idea to get a bit of momentum before starting on your first app. Spot some of the initial "oh, I see how that works"...

Hope that helps.

Upvotes: 2

The iOSDev
The iOSDev

Reputation: 5267

For this type of application you should go for the page-based application see below image

enter image description here

This provides the basic structure with swipe to change page like books or brochure at the time of reading in real world.

Upvotes: 2

Related Questions