私のアプリでUINavigationController
を使用しています。何らかの理由で、CompanyViewというthird xib
にページを切り替えることができません。それは第1から第2までではなく第2から第3まで細かく切り替わる。私はおそらく何か間違っているが、もし誰かが私のコードを見渡すことができれば素晴らしいだろう。私はボタンが正しく設定されていると思う。ここ は、ビューを変更することはありませんxib
のための私の.h file
です:ここではUINavigationControllerを使用して別のビューに移動する
#import <UIKit/UIKit.h>
#import "CompanyView.h"
@interface MenuView : UIViewController
-(IBAction)btnClicked:(id)sender;
@end
は.m file
のための私のコードです:
#import "MenuView.h"
@implementation MenuView
-(IBAction)btnClicked:(id)sender {
CompanyView * companyView = [[CompanyView alloc] init];
companyView.title = @"Company";
[self.navigationController pushViewController:companyView animated:YES];
[companyView release];
}
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)didReceiveMemoryWarning
{
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
#pragma mark - View lifecycle
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
}
- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:
(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
@end
あなたを助けることができる...それはまだ切り替えていません。 CompanyView.hと.mファイルに追加するコードがありますか? – Maple