28 lines
750 B
Objective-C
28 lines
750 B
Objective-C
//
|
|
// IfishLiveListViewController.h
|
|
// CollectionViewTest
|
|
//
|
|
// Created by imac on 17/3/27.
|
|
// Copyright © 2017年 xiang. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "IfishKankanListModel.h"
|
|
typedef NS_ENUM(NSUInteger, IfishKanKanListType) {
|
|
IfishKanKanListTypeNew = 1 , // 最新
|
|
IfishKanKanListTypePoPular = 2, // 人气
|
|
IfishKanKanListTypeRecommend = 3, // 推荐
|
|
};
|
|
|
|
@interface IfishLiveListViewController : UICollectionViewController
|
|
|
|
@property (nonatomic, assign) IfishKanKanListType listType;
|
|
@property(nonatomic,strong) NSMutableArray *dataArray;
|
|
@property(nonatomic,copy) NSString* total;
|
|
@property(nonatomic,strong) NSString*userId;
|
|
@property(nonatomic) CGFloat currentPage;
|
|
|
|
-(void)endRefreshing;
|
|
|
|
@end
|