22 lines
476 B
Objective-C
22 lines
476 B
Objective-C
//
|
|
// IfishHistoryView.h
|
|
// Ifish
|
|
//
|
|
// Created by 罗艺 on 2018/8/27.
|
|
// Copyright © 2018年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@protocol IfishHistoryViewBottomBarDelete <NSObject>
|
|
@optional
|
|
-(void)clickBottomBarWithIdx:(NSInteger)idx;
|
|
@end
|
|
|
|
|
|
@interface IfishHistoryView : UIView
|
|
@property(nonatomic,strong)NSArray*datas;
|
|
@property(nonatomic,copy)NSString*curdateStr;
|
|
@property(nonatomic,weak)id<IfishHistoryViewBottomBarDelete>myDeleget;
|
|
@end
|