1

我有一个 uitableview,当行大于一时会崩溃。这根本没有意义,因为它们是数组中的两个对象。它非常适用于对象一,但不适用于对象二。一探究竟:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    NSLog(@"rigth not %i", [pro.matches count]);

    return 1;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{    
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    //NSLog(@"%i", indexPath.row);
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }
    // configure your cell here...
    if ([pro.matches count] >0) {
        cell.textLabel.text = [pro.matches objectAtIndex:1];
    }
    [cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator];
    return cell;
}

错误:当我调用 [self.tableview 重新加载数据] 时,线程 1 sigabort 开启;

*** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayI objectAtIndex:]: index 1 beyond bounds [0 .. 0]'
*** First throw call stack:
(0x13dc022 0x156dcd6 0x13c8644 0x44cea5 0x2591a8 0x204688 0x206862 0xb466d 0xb4167 0x2a42 0x9a5f 0xa2755e 0x96463e 0x95d1e7 0x95ceea 0x9ed0ad 0x3da2330 0x3da4509 0x1313803 0x1312d84 0x1312c9b 0x12c57d8 0x12c588a 0x26626 0x20ed 0x2055)
terminate called throwing an exception
4

7 回答 7

2

您的应用程序崩溃,因为在tableView:numberOfRowsInSection

你只返回 1. 你必须返回[pro.matches count]

于 2012-05-02T15:13:36.213 回答
2

在您的if([pro.matches count] > 0)语句中,您访问objectAtIndex:1 - 如果匹配数组包含 1 个对象,它的索引为 0,访问索引 1 将使您的应用程序崩溃。

于 2012-05-02T15:15:30.587 回答
1

利用 return [pro.matches count]

而不是在您的行数方法中返回 1

于 2012-05-02T15:13:26.797 回答
1

在此处返回数组大小:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return [pro.matches count];
}

删除该if语句并将其替换为:

cell.textLabel.text = [pro.matches objectAtIndex:indexPath.row];

indexPath.row是当前行索引,从零开始。

于 2012-05-02T15:18:12.677 回答
1

您是否检查过数组中的字符串是否已正确创建和初始化?我认为有几个地方需要检查:

  1. 确保您的数组是好的,并且当您引用它们时,数组和数组内的对象都没有被释放。

  2. 在你的 -numberOfRowsInSection 中,它应该是 return [pro.matches count]

  3. 在您的 -cellForRowAtIndexPath 中,它应该是 cell.textLabel.text = [pro.matches objectAtIndex:indexPath.row];

我写了一个演示程序,试试看,你会明白的。我在 viewController.h 中创建了一个单视图应用程序:

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController<UITableViewDataSource, UITableViewDelegate>
{
    NSArray *list;
}

@property(nonatomic,retain) NSArray *list;
@end

在 viewController.m 中,

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController
@synthesize list;

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.

    NSArray *tempArray = [[NSArray alloc] initWithObjects:@"a",@"b", nil];
    self.list = tempArray;
    [tempArray release];
}

- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return YES;
}

/********************************************************************************
 ******************** UITableViewDataSource Protocol Methods ********************
 ********************************************************************************/

#pragma mark - UITableViewDataSource Protocol Functions

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    //NSLog(@"%i", indexPath.row);
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }
    // configure your cell here...
    if ([list count] >0)
    {
        cell.textLabel.text = [list objectAtIndex:indexPath.row];
    }

    [cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator];
    return cell;

}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return list.count;
}

/********************************************************************************
 ******************** UITableViewDelegate Protocol Methods **********************
 ********************************************************************************/

#pragma mark - UITableViewDelegate Protocol Functions

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{}
@end
于 2012-05-02T15:32:11.523 回答
0

你有没有想过这个?我遇到了同样的问题,最后我用这里发布的解决方案解决了这个问题:https ://stackoverflow.com/a/8096988/810360

简而言之,我只是将我的表从静态设置为动态:

UITableView 属性

于 2012-10-27T20:50:09.830 回答
0
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    NSLog(@"rigth not %i", [pro.matches count]);

    return  [pro.matches count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{    
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    //NSLog(@"%i", indexPath.row);
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }
    // configure your cell here...
    if ([pro.matches count] >0) {
        cell.textLabel.text = [pro.matches objectAtIndex:indexpath.row];
    }
    [cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator];
    return cell;
}

如果它仍然崩溃,请在此处发布所有代码。

于 2012-05-02T16:45:17.560 回答