Skip to content

Commit f918e33

Browse files
authored
Reorder project workspace for framework and example. (#1555)
1 parent d81a79a commit f918e33

File tree

277 files changed

+1802
-649
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

277 files changed

+1802
-649
lines changed

Examples/MJRefreshExample/MJRefreshExample.xcodeproj/project.pbxproj

+763
Large diffs are not rendered by default.

MJRefreshExample/Classes/DIY/MJChiBaoZiFooter.h Examples/MJRefreshExample/MJRefreshExample/Classes/DIY/MJChiBaoZiFooter.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Copyright © 2015年 小码哥. All rights reserved.
77
//
88

9-
#import "MJRefreshAutoGifFooter.h"
9+
@import MJRefresh;
1010

1111
@interface MJChiBaoZiFooter : MJRefreshAutoGifFooter
1212

MJRefreshExample/Classes/DIY/MJChiBaoZiFooter2.h Examples/MJRefreshExample/MJRefreshExample/Classes/DIY/MJChiBaoZiFooter2.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Copyright © 2015年 小码哥. All rights reserved.
77
//
88

9-
#import "MJRefreshBackGifFooter.h"
9+
@import MJRefresh;
1010

1111
@interface MJChiBaoZiFooter2 : MJRefreshBackGifFooter
1212

MJRefreshExample/Classes/DIY/MJChiBaoZiHeader.h Examples/MJRefreshExample/MJRefreshExample/Classes/DIY/MJChiBaoZiHeader.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Copyright © 2015年 小码哥. All rights reserved.
77
// 吃包子效果的头部控件
88

9-
#import "MJRefreshGifHeader.h"
9+
@import MJRefresh;
1010

1111
@interface MJChiBaoZiHeader : MJRefreshGifHeader
1212

MJRefreshExample/Classes/DIY/MJDIYAutoFooter.h Examples/MJRefreshExample/MJRefreshExample/Classes/DIY/MJDIYAutoFooter.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Copyright © 2015年 小码哥. All rights reserved.
77
//
88

9-
#import "MJRefreshAutoFooter.h"
9+
@import MJRefresh;
1010

1111
@interface MJDIYAutoFooter : MJRefreshAutoFooter
1212

MJRefreshExample/Classes/DIY/MJDIYBackFooter.h Examples/MJRefreshExample/MJRefreshExample/Classes/DIY/MJDIYBackFooter.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Copyright © 2015年 小码哥. All rights reserved.
77
//
88

9-
#import "MJRefreshBackFooter.h"
9+
@import MJRefresh;
1010

1111
@interface MJDIYBackFooter : MJRefreshBackFooter
1212

MJRefreshExample/Classes/DIY/MJDIYHeader.h Examples/MJRefreshExample/MJRefreshExample/Classes/DIY/MJDIYHeader.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Copyright © 2015年 小码哥. All rights reserved.
77
//
88

9-
#import "MJRefresh.h"
9+
@import MJRefresh;
1010

1111
@interface MJDIYHeader : MJRefreshHeader
1212

MJRefreshExample/Classes/First/MJExampleViewController.m Examples/MJRefreshExample/MJRefreshExample/Classes/First/MJExampleViewController.m

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@
1212
#import "MJCollectionViewController.h"
1313
#import "MJExample.h"
1414
#import "UIViewController+Example.h"
15-
#import "MJRefresh.h"
1615
#import "MJHorizontalCollectionViewController.h"
1716
#import "MJRefreshExample-Swift.h"
1817

18+
@import MJRefresh;
19+
1920
static NSString *const MJExample00 = @"UITableView + 下拉刷新";
2021
static NSString *const MJExample10 = @"UITableView + 上拉刷新";
2122
static NSString *const MJExample20 = @"UICollectionView";

MJRefreshExample/Classes/First/MJSingleViewController.m Examples/MJRefreshExample/MJRefreshExample/Classes/First/MJSingleViewController.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#import "MJSingleViewController.h"
1010
#import "MJTestViewController.h"
11-
#import "MJRefresh.h"
11+
@import MJRefresh;
1212

1313
@interface MJSingleViewController ()
1414
@property (assign, nonatomic) int count;

MJRefreshExample/Classes/Second/MJCollectionViewController.m Examples/MJRefreshExample/MJRefreshExample/Classes/Second/MJCollectionViewController.m

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
#import "MJCollectionViewController.h"
1010
#import "MJTestViewController.h"
1111
#import "UIViewController+Example.h"
12-
#import "MJRefresh.h"
12+
13+
@import MJRefresh;
1314

1415
static const CGFloat MJDuration = 2.0;
1516
/**

MJRefreshExample/Classes/Second/MJHorizontalCollectionViewController.m Examples/MJRefreshExample/MJRefreshExample/Classes/Second/MJHorizontalCollectionViewController.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#import "MJHorizontalCollectionViewController.h"
1010
#import "MJTestViewController.h"
1111
#import "UIViewController+Example.h"
12-
#import "MJRefresh.h"
12+
@import MJRefresh;
1313

1414
/**
1515
* 随机色

MJRefreshExample/Classes/Second/MJTableViewController.m Examples/MJRefreshExample/MJRefreshExample/Classes/Second/MJTableViewController.m

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@
77
//
88

99
#import "MJTableViewController.h"
10-
#import "UIView+MJExtension.h"
1110
#import "MJTestViewController.h"
1211
#import "UIViewController+Example.h"
13-
#import "MJRefresh.h"
12+
@import MJRefresh;
1413

1514
// 自定义的header
1615
#import "MJChiBaoZiHeader.h"

MJRefreshExample/Classes/Second/MJWebViewViewController.m Examples/MJRefreshExample/MJRefreshExample/Classes/Second/MJWebViewViewController.m

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@
88

99
#import "MJWebViewViewController.h"
1010
#import "UIViewController+Example.h"
11-
#import "MJRefresh.h"
1211
#import "MJChiBaoZiHeader.h"
1312

13+
@import MJRefresh;
14+
1415
@interface MJWebViewViewController () <UIWebViewDelegate>
1516
@property (weak, nonatomic) IBOutlet UIWebView *webView;
1617
@end

MJRefreshExample/Classes/SwiftExample/MJRefreshExample-Bridging-Header.h Examples/MJRefreshExample/MJRefreshExample/Classes/SwiftExample/MJRefreshExample-Bridging-Header.h

-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
// Use this file to import your target's public headers that you would like to expose to Swift.
33
//
44

5-
#import "MJRefresh.h"
65
#import "MJChiBaoZiHeader.h"
File renamed without changes.

0 commit comments

Comments
 (0)