Skip to main content

Posts

Showing posts with the label Load Xib file

Load Xib file for the view

NSArray *nibViews=[[NSBundle mainBundle]loadNibNamed:@"TroubleLogin" owner:self options:nil];         UIView *myView=[nibViews objectAtIndex:0];         [myView setFrame:self.bounds];         myView.backgroundColor=[UIColor clearColor];         [self addSubview:myView];