MBMImageStretches.h 849 B

12345678910111213141516171819202122232425262728
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** Describes the image stretch areas. */
  4. NS_SWIFT_NAME(ImageStretches)
  5. __attribute__((visibility ("default")))
  6. @interface MBMImageStretches : NSObject
  7. // This class provides custom init which should be called
  8. - (nonnull instancetype)init NS_UNAVAILABLE;
  9. // This class provides custom init which should be called
  10. + (nonnull instancetype)new NS_UNAVAILABLE;
  11. - (nonnull instancetype)initWithFirst:(float)first
  12. second:(float)second;
  13. /** The first stretchable part in screen pixel units. */
  14. @property (nonatomic, readonly) float first;
  15. /** The second stretchable part in screen pixel units. */
  16. @property (nonatomic, readonly) float second;
  17. - (BOOL)isEqualToImageStretches:(nonnull MBMImageStretches *)other;
  18. @end