Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Newbie question. I created a UIView named TestView with 2 IBOutlet UIButton. I would like to add this view to initially launched view controller.

The header file of the TestView is as follow:

#import <UIKit/UIKit.h>

@interface TestView : UIView {
    IBOutlet UIButton *btn1;
    IBOutlet UIButton *btn2;
}

@end

I try to add the view to the screen by:

TestView *view = [[TestView alloc] init];
[self.view addSubview:view];
[view release];

but I got no response. How can I add TestView to the original view ?

p.s. TestView as a XIB too, named TestView.xib

Environment:

  • xCode 4
  • iOS 4.3.2
share|improve this question

2 Answers

up vote 2 down vote accepted

u have to specify the frame

frame means orgin + size

here orgin (0,0)

size (200,200)

otherwise iOs dont know where to draw this view

TestView *view = [[TestView alloc] initWithFrame:CGRectMake(0, 0, 320, 460)];

[view setBackgroundColor:[UIColor greenColor]]; 

[view addSubview:btn1];

[view addSubview:btn2];
//here add whatever u want

[self.view addSubview:view];

[view release];
share|improve this answer
interesting. your answer is very close. when I execute your codes, green color appears, but not the contents in XIB. Did I miss something ? – Shivan Raptor Jul 28 '11 at 13:27
but y do u do like this.just drag the view from IB then add btns.simple – Vijay-Apple-Dev.blogspot.com Jul 28 '11 at 13:31
I have made the layout in IB. But how can I load it out ? – Shivan Raptor Jul 28 '11 at 17:02
dont worry friend here is ur step step visual tutorial. adeem.me/blog/2009/07/03/… – Vijay-Apple-Dev.blogspot.com Jul 28 '11 at 17:07
Thanks for tutorial. Can I make like this : 1 ViewController XIB with multiple views in it, each assigned to IBOutlet. When switching back & forth between screens, I will just need to show & hide the views. But will this method use a lot of memory? Actually I have an alternate solution, which uses UIViewController presentModalViewController:animated method. It works perfectly, but I would like to keep the background not moving away. – Shivan Raptor Jul 29 '11 at 1:43

You shouldn't call it view because your UIView's got already an instance variable called view.

You could also create this using Interface Builder and linking your elements to your Outlets, it will be easier

share|improve this answer
scope of this 2 view variable is different . self.view is not equal to view . It's okay to name it like this . – Shivan Raptor Jul 28 '11 at 17:01
you're absolutely right. Worst that could happen is you get a warning I guess – Lucas Jul 28 '11 at 17:45
no warning issued by xCode though. – Shivan Raptor Jul 29 '11 at 1:40

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.