帮助iphone开发 - 超出界限错误

时间:2010-05-03 22:06:31

标签: iphone url uitableview

我刚学习iphone开发,所以请原谅我可能是初学者错误。我已经四处寻找并且没有找到任何特定于我的问题,所以希望这是一个简单的解决方法。

本书提供了通过数组硬编码数据构建表的示例。不幸的是,它从来没有真正告诉你如何从URL获取数据,所以我不得不查看它,这就是我的问题出现的地方。

当我在xcode中调试时,似乎计数是正确的,所以我不明白为什么它会越界?

这是错误消息:

2010-05-03 12:50:42.705 Simple Table[3310:20b] *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[NSCFArray objectAtIndex:]: index (1) beyond bounds (0)'

我的网址返回以下字符串:

first,second,third,fourth

这是iphone代码,本书的工作示例已经注释掉了

#import "Simple_TableViewController.h"

@implementation Simple_TableViewController
@synthesize listData;

- (void)viewDidLoad
{
    /*
     //working code from book
     NSArray *array = [[NSArray alloc] initWithObjects:@"Sleepy", @"Sneezy", @"Bashful", @"Bashful", @"Happy",
                      @"Doc", @"Grumpy", @"Thorin", @"Dorin", @"Norin", @"Ori", @"Balin", @"Dwalin", @"Fili", @"Kili", @"Oin", 
                      @"Gloin", @"Bifur", @"Bofur", @"Bombur", nil];
     self.listData = array;
     [array release];
     */

     //code from interwebz that crashes 
     NSString *urlstr = [[NSString alloc] initWithFormat:@"http://www.mysite.com/folder/iphone-test.php"];
     NSURL *url = [[NSURL alloc] initWithString:urlstr];
     NSString *ans = [NSString stringWithContentsOfURL:url];
     NSArray *listItems = [ans componentsSeparatedByString:@","];

     self.listData = listItems;

     [urlstr release];
     [url release];
     [ans release];
     [listItems release];


    [super viewDidLoad];
}

- (void)didReceiveMemoryWarning {
    // Releases the view if it doesn't have a superview.
    [super didReceiveMemoryWarning];

    // Release any cached data, images, etc that aren't in use.
}

- (void)viewDidUnload 
{
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
    self.listData = nil;
    [super viewDidUnload];
}


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

#pragma mark -
#pragma mark Table View Data Source Methods

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

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

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:SimpleTableIdentifier];

    if (cell == nil)
    {
        cell = [[[UITableViewCell alloc]
                 initWithStyle:UITableViewCellStyleDefault reuseIdentifier:SimpleTableIdentifier] autorelease];
    }

    NSUInteger row = [indexPath row];
    cell.textLabel.text = [listData objectAtIndex:row];
    return cell;
}

@end

1 个答案:

答案 0 :(得分:2)

你是过度发布listItems以及ans,这可能是你的问题......当你不做div或保留(通常)返回的对象是自动释放的,因此你不需要释放它们。 [NSString ...]返回一个自动释放的字符串,所以调用[ans componentsSeparatedByString:@“,”] ...希望有帮助