Reputation: 1371
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];
Upvotes: 9
Views: 28770
Reputation: 11276
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()
}
Upvotes: 2
Reputation: 16080
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
}
Upvotes: 0
Reputation: 3142
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)
Upvotes: 3
Reputation: 1484
UIRefreshControl without UITableViewController
Or you can use UITableViewController
instead of a UIViewController
.
Upvotes: -11
Reputation: 35
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/
Upvotes: 0
Reputation: 3447
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
Upvotes: 2
Reputation: 81
-(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];
}
Upvotes: 8
Reputation: 43
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
Upvotes: 2
Reputation: 5448
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!
Upvotes: 15
Reputation: 6445
You can use this controls for this purpose
http://code4app.net/ios/Pull-To-Refresh-TableView/4f681c096803fa2c63000004
https://www.cocoacontrols.com/controls/stableviewcontroller
https://www.cocoacontrols.com/controls/qbrefreshcontrol
https://www.cocoacontrols.com/controls/isrefreshcontrol
Upvotes: 1
Reputation: 2741
Try ready-made controls. They are much easier to implement
https://www.cocoacontrols.com/controls/pulltorefreshtransform
https://www.cocoacontrols.com/controls/qbrefreshcontrol
https://www.cocoacontrols.com/controls/mspulltorefreshcontroller
Upvotes: 1