CustomNavigationController.h 298 B

123456789101112131415
  1. //
  2. // CustomNavigationController.h
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. @interface CustomNavigationController : UINavigationController
  9. // 是否可右滑返回
  10. - (void)navigationCanDragBack:(BOOL)bCanDragBack;
  11. @end