Commit 9fdf7d50df869f77700b5fa56a9cdb86b8a980fc
1 parent
cdf29cb7
no message
Showing
3 changed files
with
4 additions
and
10 deletions
CNLiveCollectionModule/Classes/Controller/CNLiveCollectionController.m
| ... | ... | @@ -9,12 +9,8 @@ |
| 9 | 9 | #import "CNLiveCollectionController.h" |
| 10 | 10 | #import "QMUIKit.h" |
| 11 | 11 | |
| 12 | -#import <Masonry/Masonry.h> | |
| 13 | -#import <SDWebImage/SDWebImage.h> | |
| 14 | 12 | #import "CNLiveCategory.h" |
| 15 | 13 | |
| 16 | -#import "CNUserInfoManager.h" | |
| 17 | - | |
| 18 | 14 | #import "CNLiveRefreshHeader.h" |
| 19 | 15 | #import "CNLiveRrfreshFooter.h" |
| 20 | 16 | ... | ... |
CNLiveCollectionModule/Classes/Model/CNLiveCollectionModel.h
| ... | ... | @@ -22,7 +22,6 @@ typedef NS_ENUM(NSInteger, CNLiveCollectionCellType) { |
| 22 | 22 | @property (nonatomic, copy) NSString *nickName; |
| 23 | 23 | @property (nonatomic, copy) NSString *extInfo; |
| 24 | 24 | @property (nonatomic, copy) NSString *image; |
| 25 | - | |
| 26 | 25 | @property (nonatomic, copy) NSString *state; |
| 27 | 26 | @property (nonatomic, copy) NSString *fansCount; |
| 28 | 27 | @property (nonatomic, copy) NSString *orderCount; |
| ... | ... | @@ -33,7 +32,6 @@ typedef NS_ENUM(NSInteger, CNLiveCollectionCellType) { |
| 33 | 32 | |
| 34 | 33 | @property (nonatomic, copy) NSString *itemId; |
| 35 | 34 | @property (nonatomic, copy) NSString *img; |
| 36 | -@property (nonatomic, strong) CNLiveIcon *icon; | |
| 37 | 35 | @property (nonatomic, copy) NSString *imagePath; |
| 38 | 36 | @property (nonatomic, copy) NSString *thumbnailPath; |
| 39 | 37 | @property (nonatomic, copy) NSString *videoImg; |
| ... | ... | @@ -42,17 +40,18 @@ typedef NS_ENUM(NSInteger, CNLiveCollectionCellType) { |
| 42 | 40 | @property (nonatomic, copy) NSString *videoPlayUrl; |
| 43 | 41 | @property (nonatomic, copy) NSString *collectionId; |
| 44 | 42 | @property (nonatomic, copy) NSString *type; |
| 45 | -@property (nonatomic, assign) NSInteger time; | |
| 46 | 43 | @property (nonatomic, copy) NSString *collectionType; |
| 47 | -@property (nonatomic, copy) NSString * shareUrl; | |
| 44 | +@property (nonatomic, copy) NSString *shareUrl; | |
| 48 | 45 | @property (nonatomic, copy) NSString *channelName; |
| 49 | 46 | @property (nonatomic, copy) NSString *contentId; |
| 50 | 47 | |
| 51 | 48 | @property (nonatomic, copy) NSURL *imageUrl; |
| 52 | 49 | @property (nonatomic, copy) NSMutableAttributedString *title; |
| 53 | 50 | @property (nonatomic, copy) NSString *nameTime; |
| 54 | -@property (nonatomic, assign) CGFloat height; | |
| 55 | 51 | |
| 52 | +@property (nonatomic, strong) CNLiveIcon *icon; | |
| 53 | +@property (nonatomic, assign) NSInteger time; | |
| 54 | +@property (nonatomic, assign) CGFloat height; | |
| 56 | 55 | |
| 57 | 56 | @end |
| 58 | 57 | ... | ... |
CNLiveCollectionModule/Classes/Model/CNLiveCollectionModel.m