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.

I am using this code to load my view but the error is occured, Here is the code:

charecterprofile *View = [[charecterprofile alloc] init];
    [self.navigationController pushViewController:View animated:YES];
    [View release];

But it does not work. What will i do?

share|improve this question
6  
You have one strange way of defining names on your identifiers, thats for sure! – LuckyLuke May 26 '11 at 12:38
whats the error on the consol – Amit Singh May 26 '11 at 12:38
Are you creating your view controller from a NIB (XIB)? – petert May 26 '11 at 12:40
i am adding UIViewcontrolling having .h , .m and xib file – Umair_uas May 26 '11 at 12:42

1 Answer

up vote 4 down vote accepted

Try the following code:

charecterprofile *view = [[charecterprofile alloc] initWithNibName:@"NIB" bundle:[NSBundle mainBundle]];

instead of just allocating the view controller object. Her NIB is your xib file name without the .xib extension.

share|improve this answer

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.