0

我正在尝试使用设置了 UITabBar 和 UITableViews 的 GUI。

我有一个以编程方式创建的 UITabView。其中一个选项卡显示了一个也是以编程方式创建的 UITableView。

然后,当调用 didSelectRowAtIndexPath 时,此 UITableView 会显示其他视图。

不幸的是,当单击表格单元格时,我的选项卡视图消失并显示新的表格视图。

我无法理解的是如何构建视图以使 tabBar 留在屏幕上。

是否像使 UITableViews 更短一样简单,或者是否有一些我缺少的窗口/视图魔力?

谢谢

4

2 回答 2

4

您应该使用 UITabBarController 来显示 UITabBar 而不是直接进行。

然后使用 UITableViewController 作为给定选项卡的视图控制器。虽然我得到的印象是你想在选择一行时呈现后代 UITableViews。如果是这种情况,你应该使用 UINavigationController 作为标签栏的视图控制器,并让它管理你的 UITableViewControllers。

请记住,在 iOS 上,您确实需要使用视图控制器模式 - 框架在后台为您处理了很多事情。


跟进:

好的,以下简单的实现对我来说很好。请忽略此代码的许多明显问题(从我在应用程序委托中将其全部破解的事实开始!);它的目的纯粹是作为控制器应该如何粘合在一起的模型。

#import <UIKit/UIKit.h>

@interface AppDelegate : UIResponder <UIApplicationDelegate, UITableViewDelegate, UITableViewDataSource>

@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) UINavigationController *navController;

@end




@implementation AppDelegate

@synthesize window = _window;
@synthesize navController = _navController;

- (void)dealloc
{
    [_navController release];
    [_window release];
    [super dealloc];
}

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];

    UITableViewController *rootTVC = [[UITableViewController alloc] initWithStyle:UITableViewStylePlain];
    [[rootTVC tableView] setDelegate:self];
    [[rootTVC tableView] setDataSource:self];
    [rootTVC setTitle:@"Root Table"];

    UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:rootTVC];
    [rootTVC release];
    [navController setTitle:@"My Table"];

    UIViewController *anotherViewController = [[UIViewController alloc] init];
    [anotherViewController setTitle:@"Not the table"];

    UITabBarController *tbc = [[UITabBarController alloc] init];
    [tbc setViewControllers:[NSArray arrayWithObjects:navController, anotherViewController, nil]];
    [self setNavController:navController];
    [navController release];
    [anotherViewController release];
    [[self window] setRootViewController:tbc];
    [tbc release];

    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    return YES;
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 10;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString *reuseIdentifier = @"foo";
    UITableViewCell *cell = [[tableView dequeueReusableCellWithIdentifier:reuseIdentifier] retain];
    if (! cell) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:reuseIdentifier];
    }
    [[cell textLabel] setText:[NSString stringWithFormat:@"Row %d", [indexPath row]]];
    return [cell autorelease];
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{ 
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
    UITableViewController *newTVC = [[UITableViewController alloc] initWithStyle:UITableViewStylePlain];
    [newTVC setTitle:[NSString stringWithFormat:@"Table %d", [indexPath row]]];
    [[newTVC tableView] setDelegate:self];
    [[newTVC tableView] setDataSource:self];
    [[self navController] pushViewController:newTVC animated:YES];
}

@end
于 2012-04-05T22:53:10.887 回答
0

使用 UITabBarController 而不是 UITabBar。

于 2012-04-05T22:56:40.337 回答