PerfectInfoPopView.h 489 B

1234567891011121314151617181920212223242526
  1. //
  2. // PerfectInfoPopView.h
  3. // BuguLive
  4. //
  5. // Created by Mac on 2021/9/23.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import "FDPopView.h"
  9. @class PerfectInfoPopView;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol PerfectInfoPopViewDelegate <NSObject>
  12. - (void)infoPopView:(PerfectInfoPopView *)infoPopView didClickEditBtn:(UIButton *)sender;
  13. @end
  14. @interface PerfectInfoPopView : FDPopView
  15. @property(nonatomic, weak) id<PerfectInfoPopViewDelegate>delegate;
  16. @end
  17. NS_ASSUME_NONNULL_END