TableView被委托,填充但不会分组

时间:2012-04-17 12:36:25

标签: objective-c ios uitableview uinavigationcontroller uitabbar

我有一个奇怪的问题,我找不到解决方案(或类似的东西)。 问题是,我的UITableView填充初始信息(用于测试),但无论我做什么,我似乎无法将其分组样式(我可以在UI上选择它,但它不会显示)

我最初启动了一个TabBar项目,并在选项卡中添加了第三个navigationController视图。

#import <UIKit/UIKit.h>

@interface RootViewController : UITableViewController <UITableViewDelegate, UITableViewDataSource> {
NSMutableArray *tableData;
}

@property (nonatomic, retain) NSMutableArray *tableData;

-(void)initTableData;

@end

这是标题,你可以看到它没有任何异常。以下代码位于我刚刚发布的标题的.m文件中(生病只发布未注释的代码:

@synthesize tableData;

-(void)initTableData
{
    tableData = [[NSMutableArray alloc] init];
    [tableData addObject:@"Cidade"];
    [tableData addObject:@"Veículo"];
    [tableData addObject:@"Ano"];
    [tableData addObject:@"Valor"];
    [tableData addObject:@"Cor"];
    [tableData addObject:@"Combustível"];
}

- (void)viewDidLoad {
    [super viewDidLoad];
    self.title = @"Busca";
    UIBarButtonItem *_backButton = [[UIBarButtonItem alloc] initWithTitle:@"Back" style:UIBarButtonItemStyleDone target:nil action:nil];
    self.navigationItem.backBarButtonItem = _backButton;
    [self initTableData];
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    // Return the number of sections.
    return 1;
}


- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    // Return the number of rows in the section.
    return 6;
}


// Customize the appearance of table view cells.
- (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...
    cell.textLabel.text = [tableData objectAtIndex:[indexPath row]];

    return cell;
}

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

你再也看不到任何异常...... 有什么可能导致这个的想法吗?我试过了

- (id)initWithStyle:(UITableViewStyle)style {
    // Override initWithStyle: if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
    self = [super initWithStyle:UITableViewStyleGrouped];
    if (self) {
        // Custom initialization.
    }
    return self;
}

因为我不知道还能做什么。 (也没用) 我再次将委托和数据源设置为File`s Owner。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    

    // Override point for customization after application launch.

    // Set the tab bar controller as the window's root view controller and display.

    self.window.rootViewController = self.tabBarController;
    RootViewController *rvc = [[RootViewController alloc] initWithStyle: UITableViewStyleGrouped];

    [self.window makeKeyAndVisible];

    return YES;
}

2 个答案:

答案 0 :(得分:1)

由于您已修改- (id)initWithStyle:(UITableViewStyle)style初始值设定项以返回带有分组样式的UITableView,因此在初始化RootViewController时是否会调用此初始化程序?

RootViewController *rvc = [[RootViewController] alloc] initWithStyle: UITableViewStyleGrouped];

答案 1 :(得分:1)

分组表格会对这些部分做出回应。您只列出了1个部分,因此您只能看到1个组。尝试为第二组添加第二个tableData并返回2个部分。您还必须按部分拆分-cellForRowAtIndexPath中的数据,以确保数据转到正确的部分。

if (indexpath.section == 0) {
   // first section and first tableData
}
if (indexpath.section == 1) {
   // second section and second tableData
}