Hello all.In my app i need to add uiview dynamically whenever user taps on button in my main uiviewcontroller.How can i do this
views:
9answers:
1
A:
Create a new method in your view controller with this signature: -(IBAction) buttonTapped:(id)sender
. Save your file. Go to Interface Builder and connect your button to this method (control-click and drag from your button to the view controller [probably your File's owner] and select the -buttonTapped
method).
Then implement the method:
-(IBAction) buttonTapped:(id)sender {
// create a new UIView
UIView *newView = [[UIView alloc] initWithFrame:CGRectMake(10,10,100,100)];
// do something, e.g. set the background color to red
newView.backgroundColor = [UIColor redColor];
// add the new view as a subview to an existing one (e.g. self.view)
[self.view addSubview:newView];
// release the newView as -addSubview: will retain it
[newView release];
}
muffix
2010-10-22 08:23:13