Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMehrbod Nikbakhsh
293 Pointshow can I create a class for a custom .xib view, witch will bee loaded in a PupUp frame ?!
1) i have created a .xib file width some design. 2) then i loading it into a fram I create
like this..
NSArray *nibObjects = [[NSBundle mainBundle] loadNibNamed:@"myPopUp" owner:self options:nil]; UIView *nibView = [nibObjects objectAtIndex:0];
nibView.frame = CGRectMake(0,0, 200, 200);
[[[self view] viewWithTag:2] removeFromSuperview];
[[self view] addSubview:nibView];
how can I integrate some functionality for the -> myPopUp.xib file ??
thanks a lot