| 1234567891011121314151617181920212223242526272829 |
- //
- // HJExpectationView.h
- // HappyJob
- //
- // Created by Bob on 2019/5/31.
- // Copyright © 2019 Bob. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @class HJExpectationView;
- @protocol HJExpectationViewDelegate <NSObject>
- @optional
- - (void)expectationShouldEdit:(HJExpectationView *)expectationView;
- @end
- @interface HJExpectationView : UIView
- @property (nonatomic, weak) id<HJExpectationViewDelegate> delegate;
- - (void)configWithData:(NSDictionary *)data;
- @end
- NS_ASSUME_NONNULL_END
|