返回的Web服务数据未填充tableview

时间:2011-02-01 00:37:54

标签: objective-c

嘿,我似乎无法解释为什么这段代码不起作用?我试图将我返回的数据从Web服务添加到uitableview中,但是失败了。该表每次显示空白。它似乎不喜欢cellForRowAtIndexPath方法。但说实话,我不确定。我什么都不能发现它。请帮忙。谢谢!

#import "RSSTableViewController.h"


@implementation RSSTableViewController

- (id)initWithStyle:(UITableViewStyle)style
{
 if (self = [super initWithStyle:style]) {
    songs = [[NSMutableArray alloc] init];
}
return self;
}



- (void)loadSongs
{

 [songs removeAllObjects];
[[self tableView] reloadData];

// Construct the web service URL
NSURL *url =[NSURL URLWithString:@"http://localhost/get_params"];

NSURLRequest *request = [NSURLRequest requestWithURL:url
                                         cachePolicy:NSURLRequestReloadIgnoringCacheData
                                     timeoutInterval:30];

if (connectionInProgress) {
    [connectionInProgress cancel];
    [connectionInProgress release];
}

[xmlData release];
xmlData = [[NSMutableData alloc] init];

connectionInProgress = [[NSURLConnection alloc] initWithRequest:request
                                                       delegate:self];
}
- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
    [self loadSongs];
}

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
[xmlData appendData:data];
}

- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
[connection release];

NSString *responseString = [[NSString alloc] initWithData:xmlData encoding:NSUTF8StringEncoding];

songs = [responseString componentsSeparatedByString:@","];

newSongs = [[NSMutableArray alloc] init];

for(int i=0; i < [songs count]; i++) {
    [newSongs addObject:[songs:i]]);
}
     [songs autorelease];


[[self tableView] reloadData];
// 
}

- (void)connection:(NSURLConnection *)connection 
  didFailWithError:(NSError *)error
{
    [connectionInProgress release];
    connectionInProgress = nil;

    [xmlData release];
    xmlData = nil;

    NSString *errorString = [NSString stringWithFormat:@"Fetch failed: %@",
                         [error localizedDescription]];
    UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:errorString
                                                             delegate:nil
                                                    cancelButtonTitle:@"OK"
                                              destructiveButtonTitle:nil
                                                  otherButtonTitles:nil];
    [actionSheet showInView:[[self view] window]];
    [actionSheet autorelease];

    [[self tableView] reloadData];
}


- (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 {
    [super viewDidUnload];

}


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

- (NSInteger)tableView:(UITableView *)tableView
 numberOfRowsInSection:(NSInteger)section
{
    return [newSongs count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView 
         cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

    UITableViewCell *cell = [tableView     dequeueReusableCellWithIdentifier:@"UITableViewCell"];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc]
                 initWithStyle:UITableViewCellStyleDefault
                 reuseIdentifier:@"UITableViewCell"] autorelease];
    }

    [[cell textLabel] setText:[newSongs objectAtIndex:[indexPath row]]];



    return cell;
}

@end

1 个答案:

答案 0 :(得分:2)

看来你忽略了警告信息,这在Objective-C中是禁忌。以下代码无法工作:

[newSongs addObject:[songs:i]]

你可能想写的是这样的:

[newSongs addObject:[songs objectAtIndex:i]]

但不是做这一切:

newSongs = [[NSMutableArray alloc] init];

for(int i=0; i < [songs count]; i++) {
    [newSongs addObject:[songs:i]]);
}

为什么不这样做?

newSongs = [songs mutableCopy];