之前我制作了简单的可可触控应用,但我从未使用过UINavigationControllers,我们将非常感谢任何建议。
我正在尝试将一个商店名称列表添加到UITableView。 UITableView可通过标签栏上的选项卡通过UINavigation控制器访问。
我有一个TabBarController.xib文件,用于保存标签栏。 我还有一个包含UINavigationController的AtoZNavigationController.xib。 我有一个包含UITableView的AtoZTableController.xib文件。
这是我的AppDelegate.h:
#import <UIKit/UIKit.h>
@class AtoZNavigationController;
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) IBOutlet UITabBarController *rootController;
@property (strong, nonatomic) IBOutlet AtoZNavigationController *navController;
@end
AppDelegate.m
#import "AppDelegate.h"
#import "AtoZNavigationController.h"
@implementation AppDelegate
@synthesize window = _window;
@synthesize rootController;
@synthesize navController;
#pragma mark -
#pragma mark Application lifecycle
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions: (NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
[[NSBundle mainBundle] loadNibNamed:@"TabBarController" owner:self options:nil];
[self.window addSubview:rootController.view];
self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
return YES;
}
@end
AtoZNavigationController.h
#import <UIKit/UIKit.h>
@interface AtoZNavigationController : UINavigationController
@end
AtoZNavigationController.m
#import "AtoZNavigationController.h"
@interface AtoZNavigationController ()
@end
@implementation AtoZNavigationController
-(id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
-(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 (interfaceOrientation == UIInterfaceOrientationPortrait);
}
@end
AtoZTableController.h
#import <UIKit/UIKit.h>
@interface AtoZTableController : UITableViewController <UITableViewDelegate, UITableViewDataSource>
{
IBOutlet UITableView *AtoZTableView;
NSMutableArray *AtoZArray;
}
@property (nonatomic, retain) IBOutlet UITableView *AtoZTableView;
@end
AtoZTableController.h
#import "AtoZTableController.h"
@interface AtoZTableController ()
@end
@implementation AtoZTableController
@synthesize AtoZTableView;
-(id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
// Custom initialization
}
return self;
}
-(void)viewDidLoad
{
[super viewDidLoad];
self.title = NSLocalizedString(@"A to Z", @"An A to Z List of Stores");
AtoZArray = [[NSMutableArray alloc] init];
[AtoZArray addObject:@"Apple"];
[AtoZArray addObject:@"Boots"];
[AtoZArray addObject:@"Topman"];
}
-(void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
#pragma mark - Table view data source
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 0;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return [AtoZArray count];
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
// Configure the cell...
NSInteger row = [indexPath row];
cell.textLabel.text = [AtoZArray objectAtIndex:row];
return cell;
}
#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];
*/
}
@end
答案 0 :(得分:2)
在AtoZTableController.h
中,您遇到了问题。
问题出在你的'tableView:cellForRowAtIndexPath:'方法中。 这就是你拥有的:
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
// Configure the cell...
NSInteger row = [indexPath row];
cell.textLabel.text = [AtoZArray objectAtIndex:row];
return cell;
}
问题是您永远不会处理来自nil
的{{1}}的返回值。
试试这个:
dequeueReusableCellWithIdentifier:CellIdentifier
修改/更新强>
好的,所以要确切地知道你的错误在哪里有点困难,所以我会为你设置/描述一个典型的情况(或者我是如何做到的)。
如果你创建一个新的应用程序并在Xcode中选择“选项卡式应用程序”模板,你会在你的应用程序代理中获得以下方法(或多或少;我将其浓缩一点并“修复”Apple使用dot的不良选择表示法):
注意: 我相信您推出新视图控制器时遇到的问题现在将在以下修复... 结束注释< / EM> 强>
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
// What happens if you don't get a cell to use?
// This is the way to create a new, default UITableViewCell
if (!cell) {
// You can look at the UITableViewCell class reference to see the 4 available styles
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
// Configure the cell...
NSInteger row = [indexPath row];
cell.textLabel.text = [AtoZArray objectAtIndex:row];
return cell;
}
此方法设置启动应用程序所需的全部内容,其中创建了2个UIViewControllers并将其设置为UITabBarController中的选项卡1和选项卡2。
现在,您可以将FirstViewController和SecondViewController设为您想要的任何内容。出于这个问题的目的,我们假设你想改变FirstViewController来托管UITableView,当用户在屏幕上选择一行时,它将推送一个细节UIViewController。
<强>要求强> EITHER FirstViewController必须是UITableViewController的子类(这是不是默认模板提供的内容) OR 您必须在FirstViewController的视图中添加UITableView并设置所有的联系。
假设您要将FirstViewController保留为标准的UIViewController子类,并在其视图中添加UITableView。 (我可能会将它更改为UITableViewController子类,但此时可能会更加混乱。)
首先,在FirstViewController.h中,更改:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[self setWindow:[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]];
// Override point for customization after application launch.
UIViewController *vc1 = [[FirstViewController alloc] initWithNibName:@"FirstVC" bundle:nil];
// New line...
UINavigationController *navC = [[UINavigationController alloc] initWithRootViewController:vc1];
UIViewController *vc2 = [[SecondViewController alloc] initWithNibName:@"SecondVC" bundle:nil];
[[self setTabBarController:[[UITabBarController alloc] init]];
// Change here, too...
[[self tabBarController] setViewControllers:[NSArray arrayWithObjects:navC, vc2, nil]];
[[self window] setRootViewController:[self tabBarController]];
[[self window] makeKeyAndVisible];
return YES;
}
到此:
@interface MMFirstViewController : UIViewController
@end
接下来,在FirstViewController.m中,合成TableView属性(@interface MMFirstViewController : UIViewController <UITableViewDataSource, UITableViewDelegate> {
UITableView *TableView;
}
@property (strong, nonatomic) IBOutlet UITableView *TableView;
@end
)。
接下来,单击Xcode中的FirstViewController.xib以使其在Interface Builder中加载(我假设您正在使用Xcode 4)。
现在,将UITableView从控件面板拖到UIViewController的视图中。
在Interface Builder中进行以下连接:
@synthesize TableView
并将TableView属性连接到您在FirstViewController视图上删除的UITableView。File's Owner
AND datasource
属性连接到delegate
。现在,您发布初始化和填充File's Owner
的代码应该可以正常工作。不要忘记复制以前的3个UITableView方法,AtoZArray
,numberOfSectionsInTableView:
和tableView:numberOfRowsInSection:
。
这些步骤应该让您工作,还应该让您看到您的设置可能出错的地方。请注意,为了推入新的UIViewController,你仍然需要自己找出tableView:cellForRowAtIndexPath:
。
这是一个让你入门的预告片:
tableView:didSelectRowAtIndexPath:
答案 1 :(得分:1)
我必须创建一个navigationController的实例,并将其传递到appDelegate.m中的子视图以及tabBarController。然后可以在我的UITableViewController中引用它。
这是我添加的代码:
navigationController = [[UINavigationController alloc] initWithRootViewController:_tabBarController];
[self.window addSubview:_tabBarController.view];
[self.window addSubview:navigationController.view];
[self.window makeKeyAndVisible];
其中navigationController只是UITableViewController或UIViewController的子类的实例,具体取决于您要显示的屏幕类型。