NSArray *nibObjects = [[NSBundle mainBundle] loadNibNamed:@"tragetView" owner:self options:nil];

UIView *nibView = [nibObjects objectAtIndex:0];


UIViewController *viewController = [[UIViewController alloc] init];

                viewController.view = nibView;

                viewController.view.frame = CGRectMake(0, 23, nibView.frame.size.width,nibView.frame.size.height);

Posted by tenn
,