| 12345678910111213141516171819202122232425262728 |
- //
- // StatusInfoTextVC.h
- // IBOSS
- //
- // Created by apple on 16/1/6.
- // Copyright © 2016年 elongtian. All rights reserved.
- //
- #import "BaseViewController.h"
- @class StatusInfo;
- @protocol StatusInfoTextDelegate <NSObject>
- @optional
- /**
- 状态回调函数
- @param s <#s description#>
- */
- -(void)showStatusValue:(StatusInfo*)s ;
- @end
- @interface StatusInfoTextVC : BaseViewController<StatusInfoTextDelegate>
- @property(strong) NSMutableArray *searchArr;
- @property(strong) NSMutableArray *filterArr;
- @property(assign,nonatomic) BOOL isPresentViewFlag;
- @property(nonatomic,weak) id<StatusInfoTextDelegate> sdelegate;
- @end
|