How to create views programmatically in iOS @techytube
How to create views programmatically in iOS  @techytube
Uploaded October 2012 | Updated September 2026, 2 weeks ago
Subscribe to our channel here for notifications on new video trainings. For more videos on technology, visit our website at http://www.techytube.com.
By pavel@techytube, for more from this author visit:
techytube.com/author/pavel

A "view" is any object of the UIView class or of one of its subclasses. That means any UI control, such as buttons, sliders, steppers etc. is a view.

Usually, when creating view that should be present on our .xib or .storyboard files, we do that visually, using Interface Builder, which is integrated in Xcode 4.
However, some situations may appear when we need do add different views dynamically on our screens, and for doing that, we need to do that programatically (Which basically has the same effects).

To create a view, we write the following code:
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 200, 100)];

We can also set the view's properties, for example the background colour:
view.backgroundColor = [UIColor redColor];

And finally we need to add that to our main view:
[self.view addSubview:view];

We can do the same thing for other classes that inherit from UIView, for example UIButton:
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button setTitle:@"Click me" forState:UIControlStateNormal];
button.frame = CGRectMake(0, 300, 200, 60);
[self.view addSubview:button];

For more details, please visit Apple's Online Documentation at:

developer.apple.com/library/ios/#documentation/uikit/reference/uiview_class/uiview/uiview.html
How to create views programmatically in iOSLinux Archive, Backup And Compress Utility (tar, Gzip, Bzip2, 7zip, Zip etc.) Part - 1UIDatePicker customisation and IBAction methodsWorking with UISlider objects in iOSWindows 8 Development - Data Binding XAMLUser And Group Administration On Linux Part 1 of 4Windows 8 Development - XAML Design Tools Part 2The differences between xib files and storyboards in iOS developmentWindows 8 Development - Creating Styles XAMLInstance Methods and Class Methods in Objective-CCreating a simple class in Objective-CWindows 8 Development - Navigating Between Pages XAML
techytube |

How to create views programmatically in iOS

SHARE TO X SHARE TO REDDIT SHARE TO FACEBOOK WALLPAPER