MBNNBannerInstruction.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. @class MBNNBannerSection;
  4. NS_SWIFT_NAME(BannerInstruction)
  5. __attribute__((visibility ("default")))
  6. @interface MBNNBannerInstruction : 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)initWithPrimary:(nonnull MBNNBannerSection *)primary
  12. view:(nullable MBNNBannerSection *)view
  13. secondary:(nullable MBNNBannerSection *)secondary
  14. sub:(nullable MBNNBannerSection *)sub
  15. remainingStepDistance:(float)remainingStepDistance
  16. index:(uint32_t)index;
  17. @property (nonatomic, readonly, nonnull) MBNNBannerSection *primary;
  18. /** A guidance view that provides visual guidance to the user. */
  19. @property (nonatomic, readonly, nullable) MBNNBannerSection *view;
  20. @property (nonatomic, readonly, nullable) MBNNBannerSection *secondary;
  21. @property (nonatomic, readonly, nullable) MBNNBannerSection *sub;
  22. @property (nonatomic, readonly) float remainingStepDistance;
  23. /** index in step */
  24. @property (nonatomic, readonly) uint32_t index;
  25. @end