iOS学习笔记12-refreshControl

之前的刷新控件 一直在研究 第三方的插件,今天学习了苹果的API UIRefreshControl

下面来介绍一下

 

 

 

 

属性有tintColor 

attributedTitle

beginRefreshing

endRefreshing

BOOL refreshing

 

 

简单贴出 自己写的refresh的代码DEMO

#import "RefreshTableViewController.h"

 

@interface RefreshTableViewController ()

@property (nonatomic,strong)NSMutableArray *arrM;

 

@end

 

@implementation RefreshTableViewController

 

- (void)viewDidLoad {

    [super viewDidLoad];

    

    

  

    [self initRefreshView];

  

 

    self.arrM = [NSMutableArray arrayWithObjects:@"haha", nil];

    // Uncomment the following line to preserve selection between presentations.

    // self.clearsSelectionOnViewWillAppear = NO;

    

    // Uncomment the following line to display an Edit button in the navigation bar for this view controller.

    // self.navigationItem.rightBarButtonItem = self.editButtonItem;

}

 

-(void)initRefreshView

{

    self.refreshControl = [[UIRefreshControl alloc]initWithFrame:CGRectMake(0, 40, self.view.frame.size.width, 40)];

    self.refreshControl.attributedTitle = [[NSAttributedString alloc]initWithString:@"refresh..." attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:20],NSForegroundColorAttributeName:[UIColor redColor]}];

    

    [self.tableView.tableHeaderView addSubview:self.refreshControl];

    [self.refreshControl addTarget:self action:@selector(refresh) forControlEvents:UIControlEventValueChanged];

    

    

}

-(void)refresh

{

    [self performSelector:@selector(addData) withObject:nil afterDelay:0.1];

}

 

-(void)addData

{

    [self.arrM insertObject:@"hahahahah" atIndex:0];

    [self.tableView reloadData];

    [self.refreshControl endRefreshing];

}

 

 

- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

 

#pragma mark - Table view data source

 

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {

    return 1;

}

 

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

    return self.arrM.count;

}

 

 

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    

    static NSString *id = @"cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:id

                                                            forIndexPath:indexPath];

    

    if (!cell) {

        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:id];

    }

    cell.textLabel.text =self.arrM[indexPath.row];

   

    

    return cell;

}

 

转载于:https://www.cnblogs.com/adodo/p/5206787.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值