| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // StatusInfoTextVC.h
- // IBOSS
- //
- // Created by apple on 16/1/6.
- // Copyright © 2017年 沈阳东科云信软件有限公司. 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 (nonatomic,strong) NSMutableArray *arrFilter;
- /**
- 是否是dismissViewController
- */
- @property (nonatomic,assign) BOOL isPresentViewFlag;
- /**
- 回调代理
- */
- @property (nonatomic,weak) id<StatusInfoTextDelegate> sdelegate;
- @end
|