IWNavigationController.h 510 B

12345678910111213141516
  1. //
  2. // IWNavigationController.h
  3. //
  4. //
  5. // Created by xuxiaojun on 15-09-20.
  6. // Copyright (c) 2015年 yingzhen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void (^CloudControlerBlock)(NSString *pid, NSString *fullSerVerPath);
  10. typedef void (^CloudControlerDBBlock)(id fileFolderModel);
  11. @interface IWNavigationController : UINavigationController
  12. @property (nonatomic , strong) CloudControlerDBBlock cloudControlerDBBlock;
  13. @property (nonatomic , strong) CloudControlerBlock cloudControlerBlock;
  14. @end