正确更新tableview中的JSON数据

时间:2013-04-17 13:17:32

标签: objective-c json

当用户幻灯片更新(UIRefreshControl)时,我很难用新结果更新我的tableview。控制器正常工作,但数据永远不会更新。我试图擦除原始数据变量,以及保存所有数据的NSArray,但它似乎不起作用。我是iPhone编程的新手,所以原谅我这是一个愚蠢的问题。

如果我设法修复它,删除我已经提取的所有数据不是错误吗?考虑到我的大多数用户将使用3G / Edge连接,是否有一种简单的方法来附加更改。这是TableViewController的实现类:

#import "Nyhetsfane.h"

@interface Nyhetsfane ()

@end

@implementation Nyhetsfane

- (id)initWithStyle:(UITableViewStyle)style
{
    self = [super initWithStyle:style];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];

    // Uncomment the following line to preserve selection between presentations.
    // self.clearsSelectionOnViewWillAppear = NO;

    // Kaller på slide to update.
    [self updateTable];

    UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];

    [refreshControl addTarget:self action:@selector(updateTable) forControlEvents:UIControlEventValueChanged];
    [refreshControl setAttributedTitle:[[NSAttributedString alloc] initWithString:@"Dra for å oppdatere"]];

    self.refreshControl = refreshControl;
}

- (void)updateTable{

    // Viser "spinner" for å symbolisere nettverkstrafikk.
    [UIApplication sharedApplication].networkActivityIndicatorVisible = YES;

    // URL til JSON filen
    NSURL *newsUrl = [NSURL URLWithString:@"http://localhost:7192/fadderapp/events.json"];

    //URL Requestobjekt for å kontrollere tilkobling
    NSURLRequest *newsRequest = [NSURLRequest requestWithURL:newsUrl];
    [[NSURLConnection alloc]initWithRequest:newsRequest delegate:self];

    [self.tableView reloadData];
    [self.refreshControl endRefreshing];

}

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response{
    [newsRawData setLength:0];
    newsRawData = [[NSMutableData alloc] init];
}

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

- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
    [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
    newsCases = [NSJSONSerialization JSONObjectWithData:newsRawData options:0 error:0];
    [self.tableView reloadData];
}

- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
    UIAlertView *errorView = [[UIAlertView alloc]initWithTitle:@"Feil" message:@"Det har oppstått en feil ved nedlastingen av data. Dobbeltsjekk at du er koblet til internett" delegate:nil cancelButtonTitle:@"Fortsett" otherButtonTitles:nil];
    [errorView show];
    [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
}


- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

#pragma mark - Table view data source



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

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];

    if(cell == nil){

        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"cell"];
    }


     cell.textLabel.text = [[newsCases objectAtIndex:indexPath.row]objectForKey:@"navn"];

    return cell;
}
    ... 

尽管如此,这是我的JSON提要:

    [ 
{"navn": "Registration", "tidspunkt": "Monday 15:05", "beskrivelse": "Demo!"},
{"navn": "Party!", "tidspunkt": "Monday 19:30", "beskrivelse": "Demo"}
]

2 个答案:

答案 0 :(得分:0)

尝试使用此代码

- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
    [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
    newCases = [NSArray array];
    newsCases = [NSJSONSerialization JSONObjectWithData:newsRawData options:0 error:0];
    [self.tableView reloadData];
}

答案 1 :(得分:-2)

更新表格视图的正确方法是调用

[self.tableView reloadData]; 

它应该自动再次调用所有数据源方法。