Многоуровневая навигация в iphone в xcode 4.2 - PullRequest
0 голосов
/ 20 февраля 2012

Я создал проект на основе вида в xcode 4.2, и я хочу добиться многоуровневой навигации для перехода к различным представлениям. Мой первый класс представления - ViewController, где я отображаю таблицу. При нажатии на строку я иду к следующему классу, который имеет панель вкладок. в этом у меня есть 3 вкладки. Первая вкладка использует класс BuyerViewController. Имеет 4 кнопки. Проблема в том, что когда я нажимаю на кнопку, следующий класс не нажимается.

ViewController.m

- (void)viewDidLoad
{
 self.title=@"Select County";
    tView = [[UITableView alloc] init];    //tView is my table view object.
    tView.frame=CGRectMake(0, 20, 320, 460);
    [tView setDelegate:self];
    [tView setDataSource:self];
    [self.view addSubview:tView];
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [countyArray count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
cell.textLabel.text = [countyArray objectAtIndex:indexPath.row];
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { 
//This works fine and pushes to my next class to show the tabs.

ShowOptionInTab *showTabbar = [[ShowOptionInTab alloc] initWithNibName:@"ShowOptionInTab" bundle:nil];
[self.navigationController pushViewController:showTabbar animated:YES];
[showTabbar release];
}

ShowOptionInTab.m

-(void)loadView {
UIView *contentView = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]];
contentView.backgroundColor = [UIColor whiteColor];
self.view = contentView;
[contentView release];

BuyerViewController *buyerController = [[BuyerViewController alloc] init ];

SellerViewController *sellerController = [[SellerViewController alloc] init];

LenderViewController *lenderController = [[LenderViewController alloc] init];

buyerController.title=@"Buyer";
sellerController.title = @"Seller";
lenderController.title = @"Lender";

UITabBarController *tabbarController = [[UITabBarController alloc] init];

tabbarController.view.frame = CGRectMake(0, 0, 320, 460);
[tabbarController setViewControllers:[NSArray arrayWithObjects:buyerController, sellerController,lenderController, nil]];

[buyerController release];
[sellerController release];
[lenderController release];
[self.view addSubview:tabbarController.view];    
}

BuyerViewController.m

-(void)viewWillAppear:(BOOL)animated
{
UIButton *quickEstimateButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];

    [quickEstimateButton addTarget:self action:@selector(getTagOfPressedButton:) forControlEvents:UIControlEventTouchUpInside];
[quickEstimateButton setTitle:@"QUICK ESTIMATE" forState:UIControlStateNormal];
quickEstimateButton.tag=1;
quickEstimateButton.frame = CGRectMake(10, 50, 150, 40.0);
[self.view addSubview:quickEstimateButton];

//more 3 buttons are added in same way
}
-(void) getTagOfPressedButton:(id)sender {

UIButton *getTagOfButton = (UIButton *)sender;
int buttonPressedTag = getTagOfButton.tag;
NSLog(@"TAG==========%d",buttonPressedTag);
if(buttonPressedTag==1)
{
    NSLog(@"quick estimate pressed");
    QuickEstimateViewController *q = [[QuickEstimateViewController alloc] init];
    NSLog(@"nav====%@",self.navigationController); //This returns null.
    [self.navigationController pushViewController:q animated:YES];
}
}

AppDelegate.m

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
        ViewController *overviewViewController = [[ViewController alloc] initWithNibName:@"ViewController_iPhone" bundle:nil];
    UINavigationController* navigation = [[UINavigationController alloc] initWithRootViewController:overviewViewController];
    navigation.navigationBar.tintColor = [UIColor blackColor];
    [overviewViewController release];

    [self.window addSubview:[navigation view]];
    [self.window makeKeyAndVisible];
}

Почему QuickEstimateViewController не отображается?

1 Ответ

0 голосов
/ 20 февраля 2012

Поскольку вы определяете новый объект tabBarController и его представление в качестве подпредставления в ShowOptionInTab, а затем также определяете новый объект BuyerViewController, его навигационный контроллер, который вы пытаетесь выдвинуть QuickEstimateViewController, будет равен нулю. Я думаю, он будет работать, если ваш код будет выглядеть так это ..

BuyerViewController *buyerController = [[BuyerViewController alloc] init ];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:buyerController];

SellerViewController *sellerController = [[SellerViewController alloc] init];

LenderViewController *lenderController = [[LenderViewController alloc] init];

buyerController.title=@"Buyer";
sellerController.title = @"Seller";
lenderController.title = @"Lender";

UITabBarController *tabbarController = [[UITabBarController alloc] init];

tabbarController.view.frame = CGRectMake(0, 0, 320, 460);
[tabbarController setViewControllers:[NSArray arrayWithObjects:nav, sellerController,lenderController, nil]];
...