刷新 UITableView 数据

发布于 2024-11-08 21:34:31 字数 447 浏览 3 评论 0原文

我有 UITableView ,顶部有一个 navigationBar 。我的导航栏右侧有一个刷新按钮。

单击刷新按钮时,我需要启动活动指示器,刷新表格并停止活动指示器。

-(void)refreshClicked{
    [spinner startAnimating];   //UIActivityIndicatorView object
    [appDelegate readJSONData]; //this is the method which populates the array
                                //for displaying in the tableview
}

我想知道如何在填充数组后刷新表格,然后如何停止活动指示器。

谢谢 :)

I have UITableView with a navigationBar at the top. I have a refresh button in the right of the navigationBar.

When clicking on the refresh button, i need to start an activity indicator, refresh the table and stop the activity indicator.

-(void)refreshClicked{
    [spinner startAnimating];   //UIActivityIndicatorView object
    [appDelegate readJSONData]; //this is the method which populates the array
                                //for displaying in the tableview
}

I want know how to refresh the table after populating the array and then how to stop the activity indicator.

thanks :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

菊凝晚露 2024-11-15 21:34:31

刷新表:

[tableView reloadData];

停止活动指示器:

[spinner stopAnimating];

-----编辑-----

从您的评论中,我可以了解到您希望平滑地淡出微调器并重新加载表格视图。

对于表格视图:

您可以使用以下代码以漂亮的淡入淡出动画重新加载表格视图的各个部分:

[tableView reloadSections:(NSIndexSet *)sections withRowAnimation:UITableViewRowAnimationFade];

您的索引集包含您想要重新加载的所有部分,并且您确实有其他用于重新加载动画的选项。看这里: UITableViewRowAnimation

要创建 NSIndexSet,请参阅 此链接

至于你的微调器,你可以在调用 stopAnimating 之前将其淡入 alpha 零,方法如下:

-(void)fadeSpinner
{
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationBeginsFromCurrentState:YES];
    [UIView setAnimationCurve:UIViewAnimationCurveEaseOut];
    [UIView setAnimationDuration:0.5];
    [UIView setAnimationDelegate:self];
    [UIView setAnimationDidStopSelector:@selector(stopAnimation)];

    spinner.alpha = 0;

    [UIView commitAnimations];
}

- (void)stopAnimation
{
    [spinner stopAnimating];
}

Refresh table:

[tableView reloadData];

Stop activity indicator:

[spinner stopAnimating];

-----EDIT-----

From your comments, I can gather that you want to smoothly fade the spinner away and reload the tableview.

For the tableview:

You can reload sections of the tableview with a nice fade animation using the following code:

[tableView reloadSections:(NSIndexSet *)sections withRowAnimation:UITableViewRowAnimationFade];

Your indexset contains all the sections you want to reload and you DO have other options for the reload animation. Look here: UITableViewRowAnimations

To create an NSIndexSet see this link

As for your spinner, you could fade it to alpha zero before calling stopAnimating by doing this:

-(void)fadeSpinner
{
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationBeginsFromCurrentState:YES];
    [UIView setAnimationCurve:UIViewAnimationCurveEaseOut];
    [UIView setAnimationDuration:0.5];
    [UIView setAnimationDelegate:self];
    [UIView setAnimationDidStopSelector:@selector(stopAnimation)];

    spinner.alpha = 0;

    [UIView commitAnimations];
}

- (void)stopAnimation
{
    [spinner stopAnimating];
}
爱人如己 2024-11-15 21:34:31

重新加载数据:

[yourTableviewController.tableView reloadData];

如果需要重新布局:

[yourTableviewController.tableView setNeedsDisplay]; 
[yourTableviewController.tableView setNeedsLayout];

reload data:

[yourTableviewController.tableView reloadData];

and if you need to relayout:

[yourTableviewController.tableView setNeedsDisplay]; 
[yourTableviewController.tableView setNeedsLayout];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文