Commit e089945bf6f61ecb1f0f0ca0c8655608d9df5cbc

Authored by yinqiaojuan
1 parent 920e47ff

0.0.6

CNLiveSubsList.podspec
... ... @@ -8,7 +8,7 @@
8 8  
9 9 Pod::Spec.new do |s|
10 10 s.name = 'CNLiveSubsList'
11   - s.version = '0.0.5'
  11 + s.version = '0.0.6'
12 12 s.summary = 'A short description of CNLiveSubsList.'
13 13  
14 14 # This description is used to generate tags and improve search results.
... ...
CNLiveSubsList/Classes/Actions/CNLiveTarget_GetSubsList.h
... ... @@ -10,7 +10,7 @@
10 10 NS_ASSUME_NONNULL_BEGIN
11 11  
12 12 @interface CNLiveTarget_GetSubsList : NSObject
13   -- (UIViewController *)CNLiveAction_getSubsListVc:(NSDictionary *)param type:(SubsType)type;
  13 +- (UIViewController *)CNLiveAction_getSubsListVc:(NSDictionary *)param type:(CNLiveSubsType)type;
14 14 @end
15 15  
16 16 NS_ASSUME_NONNULL_END
... ...
CNLiveSubsList/Classes/Actions/CNLiveTarget_GetSubsList.m
... ... @@ -8,7 +8,7 @@
8 8 #import "CNLiveTarget_GetSubsList.h"
9 9  
10 10 @implementation CNLiveTarget_GetSubsList
11   -- (UIViewController *)CNLiveAction_getSubsListVc:(NSDictionary *)param type:(SubsType)type {
  11 +- (UIViewController *)CNLiveAction_getSubsListVc:(NSDictionary *)param type:(CNLiveSubsType)type {
12 12 CNLiveSubsListViewController *vc = [[CNLiveSubsListViewController alloc] initWithType:type param:param];
13 13 return vc;
14 14 }
... ...
CNLiveSubsList/Classes/Controller/CNLiveSubsListViewController.h
... ... @@ -10,7 +10,7 @@
10 10 NS_ASSUME_NONNULL_BEGIN
11 11  
12 12 @interface CNLiveSubsListViewController : QMUICommonTableViewController
13   -- (instancetype)initWithType:(SubsType)type param:(NSDictionary *)param;
  13 +- (instancetype)initWithType:(CNLiveSubsType)type param:(NSDictionary *)param;
14 14 @end
15 15  
16 16 NS_ASSUME_NONNULL_END
... ...
CNLiveSubsList/Classes/Controller/CNLiveSubsListViewController.m
... ... @@ -31,7 +31,7 @@ static NSString *requestData = @"data";
31 31 // SubsType _type;
32 32 // UILabel *_numDarenLbl;
33 33 }
34   -@property (nonatomic, assign) SubsType type;
  34 +@property (nonatomic, assign) CNLiveSubsType type;
35 35 @property (nonatomic, strong) UILabel *numDarenLbl;
36 36 @property (nonatomic, strong) NSMutableArray<NSString *> *searchResultsKeywords;
37 37 @property (nonatomic, strong) QMUISearchController *mySearchController;
... ... @@ -44,7 +44,7 @@ static NSString *requestData = @&quot;data&quot;;
44 44 {
45 45 NSLog(@"CNSubsListViewController释放了");
46 46 }
47   -- (instancetype)initWithType:(SubsType)type param:(nonnull NSDictionary *)param{
  47 +- (instancetype)initWithType:(CNLiveSubsType)type param:(nonnull NSDictionary *)param{
48 48 if (self = [super init]) {
49 49 if (type == SubsTypeDaren) {
50 50 self.title = @"达人号";
... ...
CNLiveSubsList/Classes/ModuleA/CNLiveCoreMediator+ModuleAdSubsListActions.h
... ... @@ -11,7 +11,7 @@ NS_ASSUME_NONNULL_BEGIN
11 11  
12 12 @interface CNLiveCoreMediator (ModuleSubsListActions)
13 13 //获取达人和生活号
14   -- (UIViewController *)CNLiveCoreMediator_getSubsListVc:(NSDictionary *)param type:(SubsType)type;
  14 +- (UIViewController *)CNLiveCoreMediator_getSubsListVc:(NSDictionary *)param type:(CNLiveSubsType)type;
15 15 @end
16 16  
17 17 NS_ASSUME_NONNULL_END
... ...
CNLiveSubsList/Classes/ModuleA/CNLiveCoreMediator+ModuleAdSubsListActions.m
... ... @@ -10,7 +10,7 @@
10 10 NSString * const KCNLiveMediatorTargetAdSubsList = @"GetSubsList";
11 11 NSString * const KCNLiveMediatorActionGetSubsListVc = @"getSubsListVc";
12 12 @implementation CNLiveCoreMediator (ModuleSubsListActions)
13   -- (UIViewController *)CNLiveCoreMediator_getSubsListVc:(NSDictionary *)param type:(SubsType)type {
  13 +- (UIViewController *)CNLiveCoreMediator_getSubsListVc:(NSDictionary *)param type:(CNLiveSubsType)type {
14 14  
15 15 UIViewController *viewController = [self performTarget:KCNLiveMediatorTargetAdSubsList action:KCNLiveMediatorActionGetSubsListVc params:param shouldCacheTarget:NO];
16 16 if ([viewController isKindOfClass:[UIViewController class]]) {
... ...
CNLiveSubsList/Classes/View/CNLiveSubscribeCell.h
... ... @@ -9,14 +9,14 @@
9 9  
10 10 NS_ASSUME_NONNULL_BEGIN
11 11  
12   -typedef NS_ENUM(NSInteger, SubsType) {
  12 +typedef NS_ENUM(NSInteger, CNLiveSubsType) {
13 13 SubsTypeDaren = 0,//达人号
14 14 SubsTypeLife //生活号
15 15 };
16 16  
17 17 @class CNLiveSubsModel;
18 18 @interface CNLiveSubscribeCell : QMUITableViewCell
19   -- (void)configCellWith:(CNLiveSubsModel *)model type:(SubsType)type;
  19 +- (void)configCellWith:(CNLiveSubsModel *)model type:(CNLiveSubsType)type;
20 20 @end
21 21  
22 22 NS_ASSUME_NONNULL_END
... ...
CNLiveSubsList/Classes/View/CNLiveSubscribeCell.m
... ... @@ -23,7 +23,7 @@ static NSString *const DarenSubsRealm = @&quot;DarenSubs&quot;;
23 23 static NSString *const LifeSubsRealm = @"LifeSubs";
24 24 @interface CNLiveSubscribeCell ()
25 25 {
26   - SubsType _type;
  26 + CNLiveSubsType _type;
27 27 }
28 28 @property (nonatomic ,strong) CNLiveSubsModel * model;
29 29 @property (nonatomic ,strong) UIImageView * icon;//头像
... ... @@ -43,7 +43,7 @@ static NSString *const LifeSubsRealm = @&quot;LifeSubs&quot;;
43 43 }
44 44 return self;
45 45 }
46   -- (void)configCellWith:(CNLiveSubsModel *)model type:(SubsType)type {
  46 +- (void)configCellWith:(CNLiveSubsModel *)model type:(CNLiveSubsType)type {
47 47 _model = model;
48 48 _type = type;
49 49 [_icon sd_setImageWithURL:[NSURL URLWithString:model.image] placeholderImage:type == SubsTypeLife ? [UIImage imageNamed:@"sh_dingdan"] : kDefaultUserIcon];
... ...