0

我将https://github.com/leah/PullToRefresh导入到我的项目中。它的工作原理如下:我可以拉下我的 tableview 并刷新自己。问题是我在刷新时没有得到任何文本或箭头。我尝试导入和子类化它(有效,但没有文本或箭头)。我直接在我的课堂上实现了它(仍然有效,但没有文字或箭头)。希望有人有解决方案。

这是我在课堂上的称呼:

在我的 .h 文件中,我将其导入

#import "PullRefreshTableViewController.h"

并将其子类化

@interface Friends : PullRefreshTableViewController

在我的 .m 文件中,我按照说明进行操作并添加:

-(void)refresh {

[self performSelector:@selector(doXMLParsing) withObject:nil afterDelay:1.0];}

并放

[self stopLoading];

在我的方法结束时。

它做了它应该做的事情,遗憾的是没有显示文本或箭头。

4

1 回答 1

1

使用下面的代码在 tableView 中简单地应用 pull 来刷新。

在视图控制器的头文件中声明 refreshControl 为:-

UIRefreshControl *refreshControl;

并在实现文件中用作:-

refreshControl=[[UIRefreshControl alloc] init];
refreshControl.tintColor=t.tableCellSelectionColor;
[refreshControl setAttributedTitle:[[NSAttributedString alloc] initWithString:@"Refresh Title"]];//Optional

[refreshControl addTarget:self action:@selector(reloadTable) forControlEvents:UIControlEventValueChanged];
[tblView addSubview:refreshControl];

-(void)reloadTable
{
    // do your stuff here....
    [tblView reloadData];
    [refreshControl endRefreshing];
}
于 2013-05-25T06:46:09.563 回答