1234567891011121314151617181920212223242526272829 |
- //
- // UIViewController+ModalPresentationStyle.h
- // jiaPei
- //
- // Created by 张嵘 on 2020/3/14.
- // Copyright © 2020 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UIViewController (ModalPresentationStyle)
- /**
- Whether or not to set ModelPresentationStyle automatically for instance, Default is [Class rq_automaticallySetModalPresentationStyle].
- @return BOOL
- */
- @property (nonatomic, assign) BOOL rq_automaticallySetModalPresentationStyle;
- /**
- Whether or not to set ModelPresentationStyle automatically, Default is YES, but UIImagePickerController/UIAlertController is NO.
- @return BOOL
- */
- + (BOOL)rq_automaticallySetModalPresentationStyle;
- @end
- NS_ASSUME_NONNULL_END
|