Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm building an iphone app in which I should create a new view based upon some data... so how can I programatically create a new view with buttons, labels and pictures dinamically? Has somebody an example?!

share|improve this question

2 Answers

up vote 5 down vote accepted

Read

  1. Create UIButton Programmatically
  2. Creating programmatically a label (UILabel)

And Create then in the View. Here is a very good tutorial on how to do that !

Good Luck !

share|improve this answer

First rightclick on your Xcode project (in ios 5) and select "New file">select cocoa touch>objective c class>subclass of uiview>and name your file name. THen add the following code in the .m file.

// Implement loadView to create a view hierarchy programatically, without using a nib.

-(void)loadView {

UIView *view = [[UIView alloc] initWithFrame:[UIScreen mainScreen].applicationFrame];
[view setAutoresizingMask:UIViewAutoresizingFlexibleHeig ht|UIViewAutoresizingFlexibleWidth];
[view setBackgroundColor:[UIColor blueColor]];
self.view = view;
[view release];

} 

Then create the buttons as described in below posts.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.