tags:

views:

60

answers:

2

Hi guys,

I'm new with the iphone programming and I'm trying to know how to create all of these (UI's) without using the IB, so I'm only asking for the code lines that will create each one of these.

+1  A: 

The best way to figure this out is to read through the documentation for each of these classes. Some which are subclasses of UIView can be instantiated with -initWithFrame:, for example.

Alex Reynolds
thanks, I will check the documentation.
HUnt
A: 

Hi, I've Noticed that a lot of people viewed this question, so I was doing a search on this subject and I came through a great sample code, which can explain how to do a lot of things and here is the link to that sample code:

http://developer.apple.com/iphone/library/samplecode/uicatalog/Introduction/Intro.html

I hope that this will help.

HUnt