-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathUITableViewController+pull.m
77 lines (55 loc) · 2.09 KB
/
UITableViewController+pull.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
//
// UITableViewController+pull.m
// pullTest
//
// Created by gitBurning on 15/1/22.
// Copyright (c) 2015年 gitBurning. All rights reserved.
//
#import "UITableViewController+pull.h"
#import <objc/runtime.h>
static const char * DictKey = "dict";
#define kPull_upKey @"pull_up"
@implementation UITableViewController (pull)
-(NSMutableDictionary *)evenDict{
return objc_getAssociatedObject(self, &DictKey);
}
-(void)setEvenDict:(NSMutableDictionary *)evenDict{
objc_setAssociatedObject(self, &DictKey, evenDict, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
-(void)addHeadViewPull:(void (^)(UITableViewController *))pull{
self.evenDict=[NSMutableDictionary dictionaryWithObjectsAndKeys:pull,kPull_upKey, nil];
self.refreshControl = [[UIRefreshControl alloc]init];
[self.refreshControl addTarget:self action:@selector(RefreshViewControlEventValueChanged) forControlEvents:UIControlEventValueChanged];
}
-(void)RefreshViewControlEventValueChanged{
if (self.refreshControl.isRefreshing) {
[self headerBeginRefreshing];
}
}
-(void)headerBeginRefreshing{
if (!self.refreshControl.isRefreshing) {
//修改 tablew的 contentoffset 挡住了 refreshControl
[UIView animateWithDuration:0.25
delay:0
options:UIViewAnimationOptionBeginFromCurrentState
animations:^(void){
self.tableView.contentOffset = CGPointMake(0, -self.refreshControl.frame.size.height);
} completion:^(BOOL finished){
[self.refreshControl beginRefreshing];
}];
void(^pull)(UITableViewController*tablew)=self.evenDict[kPull_upKey];
if (pull) {
pull(self);
}
}
else{
void(^pull)(UITableViewController*tablew)=self.evenDict[kPull_upKey];
if (pull) {
pull(self);
}
}
}
-(void)headerEndRefreshing{
[self.refreshControl endRefreshing];
}
@end