69 lines
1.6 KiB
Objective-C
69 lines
1.6 KiB
Objective-C
//
|
|
// KanHuBaoGaoView.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/8/29.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "BaoGaoDownView.h"
|
|
#import "DXPopover.h"
|
|
#import "PingfenModel.h"
|
|
typedef NS_ENUM(NSInteger,PingfenStyle){
|
|
PingfenStyleWater,
|
|
PingfenStyleFeed,
|
|
PingfenStyleHealth
|
|
|
|
};
|
|
@protocol KanHuBaoGaoViewDelegate <NSObject>
|
|
|
|
@optional
|
|
|
|
|
|
-(void)shengChengBaoGaoWith:(NSString *)index1 index2:(NSString *)index2 index3:(NSString *)index3
|
|
|
|
addSuggesture:(NSString *)suggestion addPingFenArr:(NSArray *)pingFenArr;
|
|
|
|
|
|
@end
|
|
|
|
@interface KanHuBaoGaoView : UIView<
|
|
UITableViewDelegate,
|
|
UITableViewDataSource,
|
|
BaoGaoViewDelegate,
|
|
UITextViewDelegate>
|
|
|
|
{
|
|
CGRect viewFrame;
|
|
|
|
}
|
|
|
|
|
|
@property (nonatomic, assign) id<KanHuBaoGaoViewDelegate>
|
|
baoGaoViewDelegate;
|
|
|
|
@property(nonatomic,strong) UITableView *tableView;
|
|
|
|
|
|
@property(nonatomic,strong) NSArray *shuiZhiArr;
|
|
@property(nonatomic,strong) NSArray *fenArr1;
|
|
@property(nonatomic,strong) NSArray *fenArr2;
|
|
|
|
@property(nonatomic,strong) NSArray *weiShiArr;
|
|
@property(nonatomic,strong) NSArray *jianKangArr;
|
|
|
|
@property(nonatomic,strong) NSArray *cateArr;
|
|
|
|
@property(nonatomic,strong) NSIndexPath *selectShuiZhiIndex;
|
|
@property(nonatomic,strong) NSIndexPath *selectWeiShiIndex;
|
|
@property(nonatomic,strong) NSIndexPath *selectJianKangIndex;
|
|
|
|
@property(nonatomic,strong) NSArray *holdPingfenArr;
|
|
|
|
@property(nonatomic,assign) PingfenStyle pingFenStyle;
|
|
|
|
@property(nonatomic,strong) DXPopover *popover;
|
|
|
|
@end
|