uibutton to push nib
is there any w开发者_StackOverfloway i can make a uibutton push a nib in my nav controller?
Your Question is not that clear, My interpretation of it is that you want to push a new controller onto the nav stack that has been initialised by a nib..
myViewC= [[[MyViewController alloc] initWithNibName:@"MyViewController" bundle:nil];
[navigationController pushViewController:myViewC animated:YES];
精彩评论