BNBEyesState

Objective-C

@interface BNBEyesState : NSObject
- (nonnull instancetype)initWithIsOpenLeft:(BOOL)isOpenLeft
                               isOpenRight:(BOOL)isOpenRight;
+ (nonnull instancetype)eyesStateWithIsOpenLeft:(BOOL)isOpenLeft
                                    isOpenRight:(BOOL)isOpenRight;

@property (nonatomic, readonly) BOOL isOpenLeft;

@property (nonatomic, readonly) BOOL isOpenRight;

@end

Swift

class BNBEyesState : NSObject

Undocumented

  • Undocumented

    Declaration

    Objective-C

    - (nonnull instancetype)initWithIsOpenLeft:(BOOL)isOpenLeft
                                   isOpenRight:(BOOL)isOpenRight;

    Swift

    init(isOpenLeft: Bool, isOpenRight: Bool)
  • Undocumented

    Declaration

    Objective-C

    + (nonnull instancetype)eyesStateWithIsOpenLeft:(BOOL)isOpenLeft
                                        isOpenRight:(BOOL)isOpenRight;
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, readonly) BOOL isOpenLeft

    Swift

    var isOpenLeft: Bool { get }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, readonly) BOOL isOpenRight

    Swift

    var isOpenRight: Bool { get }