MBMImageStretches


@interface MBMImageStretches : NSObject

Describes the image stretch areas.

  • Unavailable

    Undocumented

    Declaration

    Objective-C

    - (nonnull instancetype)init NS_UNAVAILABLE;
  • Unavailable

    Undocumented

    Declaration

    Objective-C

    + (nonnull instancetype)new NS_UNAVAILABLE;
  • Undocumented

    Declaration

    Objective-C

    - (nonnull instancetype)initWithFirst:(float)first
                                   second:(float)second;

    Swift

    init(first: Float, second: Float)
  • The first stretchable part in screen pixel units.

    Declaration

    Objective-C

    @property (nonatomic, readonly) float first;

    Swift

    var first: Float { get }
  • The second stretchable part in screen pixel units.

    Declaration

    Objective-C

    @property (nonatomic, readonly) float second;

    Swift

    var second: Float { get }
  • Undocumented

    Declaration

    Objective-C

    - (BOOL)isEqualToImageStretches:(nonnull MBMImageStretches *)other;

    Swift

    func isEqual(to other: ImageStretches) -> Bool