| 12345678910111213141516 |
- //
- // IWNavigationController.h
- //
- //
- // Created by xuxiaojun on 15-09-20.
- // Copyright (c) 2015年 yingzhen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void (^CloudControlerBlock)(NSString *pid, NSString *fullSerVerPath);
- typedef void (^CloudControlerDBBlock)(id fileFolderModel);
- @interface IWNavigationController : UINavigationController
- @property (nonatomic , strong) CloudControlerDBBlock cloudControlerDBBlock;
- @property (nonatomic , strong) CloudControlerBlock cloudControlerBlock;
- @end
|