博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
TableView上的下拉刷新及抓获本地时间。
阅读量:6202 次
发布时间:2019-06-21

本文共 2769 字,大约阅读时间需要 9 分钟。

#import <UIKit/UIKit.h>

@interface ViewController : UITableViewController
{
    
    NSMutableArray *timeArray;
    
    UIRefreshControl *refresh;
    
}
@property (strong,nonatomic)NSMutableArray *timeArray;
@property (strong,nonatomic)UIRefreshControl *refresh;
@property (strong, nonatomic) IBOutlet UITableView *tableview;
@end

 

#import "ViewController.h"

#import "MyTableViewCell.h"
#import "MyTableViewController.h"
@interface ViewController ()
{
    NSMutableArray *_imagearray;
}
@end
@implementation ViewController
@synthesize timeArray;
@synthesize refresh;
- (void)viewDidLoad {
    [super viewDidLoad];
    self.timeArray = [[NSMutableArray alloc]init];
    [self setbeginRefreshing];
    
}
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

//UIRefreshControl目前只能用于UITableViewController,如果用在其他ViewController中,运行时会得到如下错误提示:(即UIRefreshControl只能被//UITableViewController管理)

//开始设置刷新;

- (void)setbeginRefreshing
{
    refresh = [[UIRefreshControl alloc]init];

//刷新图形颜色;

    refresh.tintColor = [UIColor redColor];

//刷新标题;

    refresh.attributedTitle = [[NSAttributedString alloc] initWithString:@"下拉刷新"];

//当用户进行下拉刷新操作时,UIRefreshControl 会触发一个UIControlEventValueChanged事件,通过监听这个事件,我们就可以进行类似数据请求的操作了

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

//刷新动作

-(void)refreshTableviewAction:(UIRefreshControl *)refreshs
{
    if (refreshs.refreshing) {
        refreshs.attributedTitle = [[NSAttributedString alloc]initWithString:@"正在刷新"];
        [self performSelector:@selector(refershData) withObject:nil afterDelay:2];
    }
}

//刷新数据;

-(void)refershData
{
    NSString *syseTime = nil;

    NSDateFormatter *formatter = [[NSDateFormatter alloc]init];

//创建时间格式;

    [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
    syseTime = [formatter stringFromDate:[NSDate date]];
    NSString *lastUpdated = [NSString stringWithFormat:@"上一次更新时间为 %@", [formatter stringFromDate:[NSDate date]]];
    self.refreshControl.attributedTitle = [[NSAttributedString alloc] initWithString:lastUpdated] ;
    [self.timeArray addObject:syseTime];

//停止刷新,与starRefreshing配对使用;

    [self.refreshControl endRefreshing];

//重载数据;

    [self.tableview reloadData];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

    return self.timeArray.count;

}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    

   if (cell == nil) {

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

    }

    

    cell.textLabel.text = [self.timeArray objectAtIndex:indexPath.row];

    return  cell;
}

转载于:https://www.cnblogs.com/lipiao/p/4214533.html

你可能感兴趣的文章
代理模式
查看>>
Jmeter之计数器与分布式融合处理
查看>>
游侠原创:传统安全厂家的最大对手——360
查看>>
思科将制止盗版及Dy模拟器现象,IOS也要黑屏么?
查看>>
[linux][KVM]
查看>>
UILabel和UITextView文字换行差异
查看>>
struts2乱码
查看>>
Run hadoop example
查看>>
maven常用配置的变量
查看>>
[转] SharePoint 2013配置启用搜索服务
查看>>
80后最牛的辞职信,最近哥倍感压力
查看>>
使用新浪微博Android SDK
查看>>
网络管理 之 Fedora Core 网络配置工具system-config-network介绍
查看>>
遍历Map的四种方法
查看>>
coding源码分析:架构篇(待再更新)
查看>>
开源日志系统比较
查看>>
linux WebService (gsoap)
查看>>
git的一些操作
查看>>
我的友情链接
查看>>
SQL SERVER:LEFT/RIGHT/SUBSTRING/CHARINDEX
查看>>