Нет описания

KXThirdMarkView.h 368B

12345678910111213141516171819202122
  1. //
  2. // KXThirdMarkView.h
  3. // CAISHEN
  4. //
  5. // Created by jikaipeng on 2018/5/21.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol KXThirdMarkViewDelegate<NSObject>
  10. - (void)markViewBtnClick:(UIButton *)button;
  11. @end
  12. @interface KXThirdMarkView : UIView
  13. @property (nonatomic, weak) id<KXThirdMarkViewDelegate> delegate;
  14. @end