HJExpectationView.h 519 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // HJExpectationView.h
  3. // HappyJob
  4. //
  5. // Created by Bob on 2019/5/31.
  6. // Copyright © 2019 Bob. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @class HJExpectationView;
  11. @protocol HJExpectationViewDelegate <NSObject>
  12. @optional
  13. - (void)expectationShouldEdit:(HJExpectationView *)expectationView;
  14. @end
  15. @interface HJExpectationView : UIView
  16. @property (nonatomic, weak) id<HJExpectationViewDelegate> delegate;
  17. - (void)configWithData:(NSDictionary *)data;
  18. @end
  19. NS_ASSUME_NONNULL_END