No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UMONCustomEvent.h 524B

1234567891011121314151617
  1. NS_ASSUME_NONNULL_BEGIN
  2. @interface UMONCustomEventBuilder : NSObject
  3. @property (nonatomic) NSString *category;
  4. @property (nonatomic) NSString *type;
  5. @property (nonatomic) NSDictionary *userInfo;
  6. @end
  7. @interface UMONCustomEvent : NSObject
  8. @property (strong) NSString *category;
  9. @property (strong) NSString *type;
  10. @property (strong) NSDictionary *userInfo;
  11. - (instancetype)initWithBuilder: (UMONCustomEventBuilder *)builder;
  12. + (instancetype)build: (void (^)(UMONCustomEventBuilder *))buildBlock;
  13. @end
  14. NS_ASSUME_NONNULL_END