我正在尝试使用UITabBar和UITableViews设置GUI。
我有一个以编程方式创建的UITabView。 其中一个选项卡显示一个UITableView,它也是以编程方式创建的。
当调用didSelectRowAtIndexPath时,此UITableView会显示其他视图。
不幸的是,当点击表格单元格时,我的标签视图会消失,并显示新的表格视图。
我无法理解的是如何构建视图以便tabBar保留在屏幕上。
是否简化UITableViews更简单,或者是否有一些我缺少的窗口/视图mojo?
由于
答案 0 :(得分: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
答案 1 :(得分:0)
使用UITabBarController而不是UITabBar。