// // UIViewController+ModalPresentationStyle.h // jiaPei // // Created by 张嵘 on 2020/3/14. // Copyright © 2020 JCZ. All rights reserved. // #import 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