0

我用 UITableView 编写了一个简单的 RSSReader。我可以通过在 ViewController 类中实现 UITableDataSource 来显示指定的提要。但是,我正在尝试显示输入到文本框中的提要。我使用 NSLogs 进行调试,输入的提要在按钮按下时被正确解析。但是,在[[self tableOfFeeds] reload]视图没有更新。

- (void)viewDidLoad
{
    [super viewDidLoad];

    [self setNf: [[NewsFeed alloc] init]];
    if ([textFieldUserInput.text length] == 0)
    link = @"http://afeedurl.com/feed.rss";
     [self.nf setFeedUrl:[NSURL URLWithString:link]];
    [self.nf retrieveFromInternet];
    for (id newsItem in [self.nf newsStories]){ // Debug
        NSDictionary * d = (NSDictionary *) newsItem;
        NSLog(@"Title: %@ \n %@", [d objectForKey:@"title"], [d objectForKey:@"description"]);
    }
    [[self tableOfFeeds] setDataSource:self];
    [[self tableOfFeeds] setRowHeight:70.0];
    [[self tableOfFeeds] reloadData];
}

这是更改提要的操作。

- (IBAction)refreshFeed:(id)sender {
    NSString * ui = self.textFieldUserInput.text;
    if ([ui length] == 0) // If text field is blank, then reload the old feed from internet.
        [[self tableOfFeeds] reloadData];
    else {
        [self.nf setFeedUrl: [NSURL URLWithString:ui]];
        [self.nf retrieveFromInternet];
        [[self tableOfFeeds] setDataSource: self];
        [[self tableOfFeeds] reloadData];

        for (id newsItem in [self.nf newsStories]){ // Debug
            NSDictionary * d = (NSDictionary *) newsItem;
            NSLog(@"Title: %@ \n %@", [d objectForKey:@"title"], [d objectForKey:@"description"]);
        }
    }
}
4

1 回答 1

0

问题中的上述代码似乎是有效的。我将问题追溯到这种方法。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    NSString * cellId = @"feeds";
    UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:cellId];
    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellId];
        NSMutableDictionary * news = (NSMutableDictionary *) [[[self nf] newsStories] objectAtIndex: indexPath.row];
        [[cell textLabel] setText: [news objectForKey:@"title"]];
        [[cell detailTextLabel] setText: [news objectForKey:@"description"]];
        [[cell detailTextLabel] setNumberOfLines:2];

    }
        return cell;
}

声明 NSMutable Dictionary 并设置单元格文本的部分需要在 if 语句之外。

我认为这是可行的,因为我想更改的大多数单元格已经包含数据,因此不需要调用 alloc/init。

于 2012-10-11T02:57:35.303 回答