Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8659161
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T15:56:37+00:00 2026-06-12T15:56:37+00:00

I’ve written a simple RSSReader with UITableView. I can make a specified feed display

  • 0

I’ve written a simple RSSReader with UITableView. I can make a specified feed display by implementing UITableDataSource in my ViewController class. However, I’m trying to display a feed that is entered into a text box. I’ve used NSLogs to debug, and the entered feed is properly parsed upon button press. However, upon [[self tableOfFeeds] reload] the view is not updated.

- (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];
}

And here’s the action that changes the feed.

- (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"]);
        }
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T15:56:38+00:00Added an answer on June 12, 2026 at 3:56 pm

    The above code in the question seems to be valid. I traced the issue to this method.

    - (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;
    }
    

    The part that declares the NSMutable Dictionary and sets the cell text needs to be out of the if statement.

    I think this works because most of the cells I’d like to change already contain data, and therefore alloc/init doesn’t need to be called.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to understand how to use SyndicationItem to display feed which is
I am doing a simple coin flipping experiment for class that involves flipping a
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
i want to parse a xhtml file and display in UITableView. what is the
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and
this is what i have right now Drawing an RSS feed into the php,
In my XML file chapters tag has more chapter tag.i need to display chapters
Seemingly simple, but I cannot find anything relevant on the web. What is the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.