21 lines
429 B
C
21 lines
429 B
C
|
|
//
|
||
|
|
// HWPopNavigationController.h
|
||
|
|
// HWPopController
|
||
|
|
//
|
||
|
|
// Created by heath wang on 2019/6/10.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
/**
|
||
|
|
* If you want to pop UINavigationController & dynamic change the pop contentSize:
|
||
|
|
* You should subclass HWPopNavigationController, then use it like a normally UIViewController
|
||
|
|
*/
|
||
|
|
@interface HWPopNavigationController : UINavigationController
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|