TabBar Controller и NavigationBar - PullRequest
0 голосов
/ 13 марта 2011

Мне нужно создать приложение с контроллером панели вкладок и некоторыми контроллерами представления, я сделал почти весь код, и теперь у меня возникают проблемы с выталкиванием контроллера представления из первого TableView (на первом изображении), потому что я могу скрыть панель вкладок, но не могу отобразить панель навигации с соответствующей кнопкой назад.

Я просто спрашиваю здесь, может ли кто-нибудь помочь мне и, возможно, объяснить мне, как построить структуру в IB (и код тоже), просто структуру, потому что все остальное я сделал. Спасибо!

изображение структуры приложения

Ответы [ 2 ]

0 голосов
/ 27 октября 2013

NavigationViewController и TabViewController, оба они являются контроллером представления контейнера.Так что вы должны разобраться в их иерархии.

В соответствии с вашим изображением, я думаю, что внешний вид, который вы должны использовать, это TabBarViewController.

сначала сделайте его корневым контроллером для оконного объекта..

 UITabBarController*tabCtrl = [[UITabBarController] alloc] init];
 self.window.rootViewController = tabCtrl;

секунду, создайте первый контроллер вида как UINavigationController, затем добавьте его в tabbarcontroller.

UINavigationController *firstCtrl = UINavigationController  init...
firstCtrl.rootViewController = firstTableViewController// this is the table view that you want to show on the first tab.
0 голосов
/ 13 марта 2011

Для того чтобы UITableView был в вашем первом окне, вам нужно сделать ваш .h файл подклассом UITableViewController и добавить все необходимые методы в ваш .m

FirstViewController.h

@interface FirstViewController : UITableViewController {

}

@end

FirstViewController.m

#import "FirstViewController.h"


@implementation FirstViewController

- (id)initWithStyle:(UITableViewStyle)style
{
    self = [super initWithStyle:style];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)dealloc
{
    [super dealloc];
}

- (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];

    // Uncomment the following line to preserve selection between presentations.
    // self.clearsSelectionOnViewWillAppear = NO;

    // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
    // self.navigationItem.rightBarButtonItem = self.editButtonItem;
}

- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
}

- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
}

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
}

- (void)viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
}

- (void)viewDidDisappear:(BOOL)animated
{
    [super viewDidDisappear:animated];
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
#warning Potentially incomplete method implementation.
    // Return the number of sections.
    return 0;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
#warning Incomplete method implementation.
    // Return the number of rows in the section.
    return 0;
}

- (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];
    }

    // Configure the cell...

    return cell;
}

/*
// Override to support conditional editing of the table view.
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Return NO if you do not want the specified item to be editable.
    return YES;
}
*/

/*
// Override to support editing the table view.
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (editingStyle == UITableViewCellEditingStyleDelete) {
        // Delete the row from the data source
        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
    }   
    else if (editingStyle == UITableViewCellEditingStyleInsert) {
        // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
    }   
}
*/

/*
// Override to support rearranging the table view.
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath
{
}
*/

/*
// Override to support conditional rearranging of the table view.
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Return NO if you do not want the item to be re-orderable.
    return YES;
}
*/

#pragma mark - Table view delegate

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Navigation logic may go here. Create and push another view controller.
    /*
     <#DetailViewController#> *detailViewController = [[<#DetailViewController#> alloc] initWithNibName:@"<#Nib name#>" bundle:nil];
     // ...
     // Pass the selected object to the new view controller.
     [self.navigationController pushViewController:detailViewController animated:YES];
     [detailViewController release];
     */
}

@end

Теперь у вас будет табличное представление в первом представлении. Тогда все, что вам нужно, чтобы перейти к следующему представлению, это что-то вроде:

NextViewController *next = [[NextViewController alloc] initWithNibName:@"NextViewController" bundle:nil];
[next setTitle:@"Next View"];
[self.navigationController pushViewController:next animated:YES];
[next release];
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...