File tree 8 files changed +105
-50
lines changed
MJRefreshExample.xcodeproj
8 files changed +105
-50
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = 'MJRefresh'
3
- s . version = '3.1.1 '
3
+ s . version = '3.1.3 '
4
4
s . summary = 'An easy way to use pull-to-refresh'
5
5
s . homepage = 'https://github.com/CoderMJLee/MJRefresh'
6
6
s . license = 'MIT'
Original file line number Diff line number Diff line change 11
11
#import " MJRefreshConst.h"
12
12
#import " UIView+MJExtension.h"
13
13
#import " UIScrollView+MJRefresh.h"
14
+ #import " NSBundle+MJRefresh.h"
14
15
15
16
@interface MJRefreshComponent ()
16
17
@property (strong , nonatomic ) UIPanGestureRecognizer *pan;
@@ -149,8 +150,12 @@ - (NSString *)localizedStringForKey:(NSString *)key withDefault:(NSString *)defa
149
150
language = [language substringToIndex: range.location];
150
151
}
151
152
153
+ if (language.length == 0 ) {
154
+ language = @" zh-Hans" ;
155
+ }
156
+
152
157
// 先从MJRefresh.bundle中查找资源
153
- NSBundle *refreshBundle = [NSBundle bundleWithPath: [[ NSBundle mainBundle ] pathForResource: @" MJRefresh " ofType: @" bundle " ] ];
158
+ NSBundle *refreshBundle = [NSBundle mj_refreshBundle ];
154
159
if ([refreshBundle.localizations containsObject: language]) {
155
160
bundle = [NSBundle bundleWithPath: [refreshBundle pathForResource: language ofType: @" lproj" ]];
156
161
}
Original file line number Diff line number Diff line change 7
7
//
8
8
9
9
#import " MJRefreshBackNormalFooter.h"
10
+ #import " NSBundle+MJRefresh.h"
10
11
11
12
@interface MJRefreshBackNormalFooter ()
12
13
{
@@ -20,8 +21,7 @@ @implementation MJRefreshBackNormalFooter
20
21
- (UIImageView *)arrowView
21
22
{
22
23
if (!_arrowView) {
23
- UIImage *image = [UIImage imageNamed: MJRefreshSrcName (@" arrow.png" )] ?: [UIImage imageNamed: MJRefreshFrameworkSrcName (@" arrow.png" )];
24
- UIImageView *arrowView = [[UIImageView alloc ] initWithImage: image];
24
+ UIImageView *arrowView = [[UIImageView alloc ] initWithImage: [NSBundle mj_arrowImage ]];
25
25
[self addSubview: _arrowView = arrowView];
26
26
}
27
27
return _arrowView;
@@ -75,6 +75,8 @@ - (void)placeSubviews
75
75
if (self.loadingView .constraints .count == 0 ) {
76
76
self.loadingView .center = arrowCenter;
77
77
}
78
+
79
+ self.arrowView .tintColor = self.stateLabel .textColor ;
78
80
}
79
81
80
82
- (void )setState : (MJRefreshState)state
Original file line number Diff line number Diff line change 7
7
//
8
8
9
9
#import " MJRefreshNormalHeader.h"
10
+ #import " NSBundle+MJRefresh.h"
10
11
11
12
@interface MJRefreshNormalHeader ()
12
13
{
@@ -20,9 +21,7 @@ @implementation MJRefreshNormalHeader
20
21
- (UIImageView *)arrowView
21
22
{
22
23
if (!_arrowView) {
23
- UIImage *image = [UIImage imageNamed: MJRefreshSrcName (@" arrow.png" )] ?: [UIImage imageNamed: MJRefreshFrameworkSrcName (@" arrow.png" )];
24
- UIImageView *arrowView = [[UIImageView alloc ] initWithImage: [image imageWithRenderingMode: (UIImageRenderingModeAlwaysTemplate)]];
25
- arrowView.tintColor = self.stateLabel .textColor ;
24
+ UIImageView *arrowView = [[UIImageView alloc ] initWithImage: [NSBundle mj_arrowImage ]];
26
25
[self addSubview: _arrowView = arrowView];
27
26
}
28
27
return _arrowView;
@@ -84,6 +83,8 @@ - (void)placeSubviews
84
83
if (self.loadingView .constraints .count == 0 ) {
85
84
self.loadingView .center = arrowCenter;
86
85
}
86
+
87
+ self.arrowView .tintColor = self.stateLabel .textColor ;
87
88
}
88
89
89
90
- (void )setState : (MJRefreshState)state
Original file line number Diff line number Diff line change 29
29
// 字体大小
30
30
#define MJRefreshLabelFont [UIFont boldSystemFontOfSize: 14 ]
31
31
32
- // 图片路径
33
- #define MJRefreshSrcName (file ) [@" MJRefresh.bundle" stringByAppendingPathComponent: file]
34
- #define MJRefreshFrameworkSrcName (file ) [@" Frameworks/MJRefresh.framework/MJRefresh.bundle" stringByAppendingPathComponent: file]
35
-
36
32
// 常量
37
33
UIKIT_EXTERN const CGFloat MJRefreshHeaderHeight;
38
34
UIKIT_EXTERN const CGFloat MJRefreshFooterHeight;
Original file line number Diff line number Diff line change
1
+ //
2
+ // NSBundle+MJRefresh.h
3
+ // MJRefreshExample
4
+ //
5
+ // Created by MJ Lee on 16/6/13.
6
+ // Copyright © 2016年 小码哥. All rights reserved.
7
+ //
8
+
9
+ #import < Foundation/Foundation.h>
10
+
11
+ @interface NSBundle (MJRefresh)
12
+ + (instancetype )mj_refreshBundle ;
13
+ + (UIImage *)mj_arrowImage ;
14
+ @end
Original file line number Diff line number Diff line change
1
+ //
2
+ // NSBundle+MJRefresh.m
3
+ // MJRefreshExample
4
+ //
5
+ // Created by MJ Lee on 16/6/13.
6
+ // Copyright © 2016年 小码哥. All rights reserved.
7
+ //
8
+
9
+ #import " NSBundle+MJRefresh.h"
10
+ #import " MJRefreshComponent.h"
11
+
12
+ @implementation NSBundle (MJRefresh)
13
+ + (instancetype )mj_refreshBundle
14
+ {
15
+ static NSBundle *refreshBundle = nil ;
16
+ if (refreshBundle == nil ) {
17
+ // 这里不使用mainBundle是为了适配pod 1.x和0.x
18
+ refreshBundle = [NSBundle bundleWithPath: [[NSBundle bundleForClass: [MJRefreshComponent class ]] pathForResource: @" MJRefresh" ofType: @" bundle" ]];
19
+ }
20
+ return refreshBundle;
21
+ }
22
+
23
+ + (UIImage *)mj_arrowImage
24
+ {
25
+ static UIImage *arrowImage = nil ;
26
+ if (arrowImage == nil ) {
27
+ arrowImage = [[UIImage imageWithContentsOfFile: [[self mj_refreshBundle ] pathForResource: @" arrow@2x" ofType: @" png" ]] imageWithRenderingMode: UIImageRenderingModeAlwaysTemplate];
28
+ }
29
+ return arrowImage;
30
+ }
31
+ @end
You can’t perform that action at this time.
0 commit comments