0

我是 iOS 开发的新手,我没有太多的编程经验。我要么想UITableView从遵循以下教程的 RSS 提要重新加载:RSS 教程

我似乎无法为其添加重新加载按钮,因为有时它第一次加载失败并且想在顶部栏中添加一个按钮以重新加载数据。

就像我说的那样,我几乎没有使用 Objective-C 的经验,但任何帮助都将不胜感激。

以下代码是刷新提要的代码的一部分:

- (void)viewDidLoad {
    [super viewDidLoad];    
    self.title = @"News";
    self.allEntries = [NSMutableArray array];
    self.queue = [[[NSOperationQueue alloc] init] autorelease];
    self.feeds = [NSArray arrayWithObjects:@"http://yourllanelli.org.uk/index.php?format=feed&type=atom",
        nil];    
    [self refresh];

    _reloadButton = [[[UIBarButtonItem alloc]
                                       initWithTitle:@"Settings" style:UIBarButtonItemStyleBordered
                                       target:self action:@selector(reloadClick)]  autorelease];
}

-(void)reloadClick {    
    [UITableView refresh];
}
4

1 回答 1

0

reloadClick调用该操作时,您实际上并没有再次从 RSS 提要中获取数据。

你想调用你的refresh方法,一旦你的 ASIHTTPRequests 都完成了,你想调用[UITableView reloadData]

-(void)reloadClick
{    
    [self refresh];
}

- (void) requestDidFinish:(ASIHTTPRequest *)request {
     // you need to reload your UITableView once your ASIHTTPRequests finish.
     // since you are sending many requests to get the contents of different feeds, 
     // it would be better to call the following line only once, 
     // when all of the requests have finished
     [UITableView reloadData];
}
于 2012-05-14T22:17:59.557 回答