BBABottomDialogConfigItem.h 790 Bytes
//
//  BBABottomDialogConfigItem.h
//  BBAUIKit
//
//  Created by 张永禄 on 2020/6/9.
//  Copyright © 2020 Baidu. All rights reserved.
//

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

@interface BBABottomDialogConfigItem : NSObject

@property (nonatomic, assign) BOOL shouldAutorotate;
@property (nonatomic, assign) UIInterfaceOrientationMask supportedInterfaceOrientations;
@property (nonatomic, assign) UIInterfaceOrientation preferredInterfaceOrientationForPresentation;

@property (nonatomic, copy) BOOL (^shouldAutorotateBlock)(void);
@property (nonatomic, copy) UIInterfaceOrientationMask (^supportedInterfaceOrientationsBlock)(void);
@property (nonatomic, copy) UIInterfaceOrientation (^preferredInterfaceOrientationForPresentationBlock)(void);

@end

NS_ASSUME_NONNULL_END