9

I am trying to implement the pull to refresh functionality in my application. The architecture is such that the there is a UITableView inside a UIViewController. I want to be able to refresh the tableview on pull down. I tried the code below in the viewDidLoad method, but it does not work. Can any one tell me where am I wrong in implementation?

UIRefreshControl *refresh = [[UIRefreshControl alloc] init];
    refresh.tintColor = [UIColor grayColor];
    refresh.attributedTitle = [[NSAttributedString alloc] initWithString:@"Pull to Refresh"];
    [refresh addTarget:self action:@selector(get_vrns) forControlEvents:UIControlEventValueChanged];
    [self.vrnTable addSubview:refresh];
NightFury
  • 13,436
  • 6
  • 71
  • 120
Hassan Zaheer
  • 1,361
  • 2
  • 20
  • 34
  • 1
    possible duplicate of [UIRefreshControl without UITableViewController](http://stackoverflow.com/questions/12497940/uirefreshcontrol-without-uitableviewcontroller) – Amar Nov 22 '13 at 06:53
  • possible duplicate of [Pull to refresh UITableView without UITableViewController](http://stackoverflow.com/questions/10291537/pull-to-refresh-uitableview-without-uitableviewcontroller) – Lanorkin Sep 07 '14 at 18:04

11 Answers11

15

Since you can't use a UITableViewController instead of UIViewController, try doing this :

UITableViewController *tableViewController = [[UITableViewController alloc] init];
tableViewController.tableView = self.vrnTable;

UIRefreshControl *refresh = [[UIRefreshControl alloc] init];
refresh.tintColor = [UIColor grayColor];
refresh.attributedTitle = [[NSAttributedString alloc] initWithString:@"Pull to Refresh"];
[self.refresh addTarget:self action:@selector(get_vrns) forControlEvents:UIControlEventValueChanged];

tableViewController.refreshControl = self.refresh;

Hope this helps!

aksh1t
  • 5,410
  • 1
  • 37
  • 55
8
-(void)viewDidLoad
{
   UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];
    [refreshControl addTarget:self action:@selector(refreshData) forControlEvents:UIControlEventValueChanged];
    //[self.mytable addSubview:refreshControl];
    UITableViewController *tableViewController = [[UITableViewController alloc] init];
    tableViewController.tableView = self.mytable;
    tableViewController.refreshControl = refreshControl;
}

-(void)refreshData
{
    //Put your logic here


   //reload table & remove refreshing image
   UITableViewController *tableViewController = [[UITableViewController alloc] init];
   tableViewController.tableView = self.mytable;
   [self.mytable reloadData];
   [tableViewController.refreshControl endRefreshing];
}
user3781953
  • 81
  • 1
  • 2
3

Updated answer for Swift 1.2

    var refreshControl = UIRefreshControl()
    refreshControl.backgroundColor = blue
    refreshControl.tintColor = UIColor.whiteColor()
    refreshControl.addTarget(self, action: Selector("yourFunctionHere"), forControlEvents: UIControlEvents.ValueChanged)
    self.tableView.addSubview(refreshControl)
leerob
  • 2,876
  • 1
  • 18
  • 38
2

you can see here : UIRefreshControl in UIViewController (with UITableView)

@interface MyViewController ()
{
    UIRefreshControl *refreshControl;
}
  @property (weak, nonatomic) IBOutlet UITableView *tableView;
@end

@implementation MyViewController

- (void)viewDidLoad
{
    [super viewDidLoad];

    UIView *refreshView = [[UIView alloc] initWithFrame:CGRectMake(0, 55, 0, 0)];
    [self.tableView insertSubview:refreshView atIndex:0]; //the tableView is a IBOutlet

    refreshControl = [[UIRefreshControl alloc] init];
    refreshControl.tintColor = [UIColor redColor];
    [refreshControl addTarget:self action:@selector(reloadDatas) forControlEvents:UIControlEventValueChanged];
    /* NSMutableAttributedString *refreshString = [[NSMutableAttributedString alloc] initWithString:@"Pull To Refresh"];
    [refreshString addAttributes:@{NSForegroundColorAttributeName : [UIColor grayColor]} range:NSMakeRange(0, refreshString.length)];
    refreshControl.attributedTitle = refreshString; */
    [refreshView addSubview:refreshControl];
}

-(void)reloadDatas
{
   //update here...

   [refreshControl endRefreshing];
}

@end

http://www.g8production.com/post/79514553078/ios7-and-uirefreshcontrol-in-uiviewcontroller-with

ldt25290
  • 43
  • 2
  • 8
2

If your app support iOS 6 (and later) only: I suggest UIRefreshControl

If also support iOS 5, you can use https://github.com/enormego/EGOTableViewPullRefresh

Nhat Dinh
  • 3,378
  • 4
  • 35
  • 51
2

For Swift 3 and iOS backward compatibility

var refreshControl = UIRefreshControl()
let string = "Pull to refresh"
let attributedString = NSMutableAttributedString(string: string)
    attributedString.addAttributes([NSFontAttributeName:UIFont.systemFont(ofSize: 16)),NSForegroundColorAttributeName:UIColor.white], range: NSRange.init(location: 0, length: string.characters.count))
self.refreshControl.attributedTitle = attributedString
self.refreshControl.tintColor = UIColor.white
self.refreshControl.addTarget(self,
                             action: #selector(self.pulledDownForRefresh),
                             for: .valueChanged)
if #available(iOS 10.0, *) {
    self.accountSummaryTableView.refreshControl = refreshControl
} else {
    self.accountSummaryTableView.addSubview(refreshControl)
}

func pulledDownForRefresh() {
     //do some opertaion and then call
    self.refreshControl.endRefreshing()
}
Satheesh
  • 10,998
  • 6
  • 50
  • 93
0

I think you need to set the refresh control of the UITableView. I would need to see more of your code and view structure to diagnose the problem.

Here's a tutorial for objective-c and swift: http://www.jackrabbitmobile.com/design/ios-custom-pull-to-refresh-control/

0

For Swift 3:

var refreshControl: UIRefreshControl!

override func viewDidLoad() {
    super.viewDidLoad()

    self.refreshControl = UIRefreshControl()

    self.refreshControl.tintColor = UIColor.black
    self.refreshControl.addTarget(self,
                                  action: #selector(ViewController.pullToRefreshHandler),
                                  for: .valueChanged)

    self.tableView.addSubview(self.refreshControl)
}

@objc func pullToRefreshHandler() {
    // refresh table view data here
}
pableiros
  • 14,932
  • 12
  • 99
  • 105
-11

UIRefreshControl without UITableViewController

Or you can use UITableViewController instead of a UIViewController.

Community
  • 1
  • 1
Evgeniy S
  • 1,464
  • 12
  • 32
  • Can't do that due to some limitations. Is there a work around such that I don't have to change the architecture. – Hassan Zaheer Nov 22 '13 at 06:48
  • Amar post good link above your question. http://stackoverflow.com/questions/12497940/uirefreshcontrol-without-uitableviewcontroller – Evgeniy S Nov 22 '13 at 06:57