GroupIntroduceBodyView.h 484 B

123456789101112131415161718192021222324
  1. //
  2. // GroupIntroduceBodyView.h
  3. // KulexiuForTeacher
  4. //
  5. // Created by 王智 on 2024/12/30.
  6. //
  7. #import <UIKit/UIKit.h>
  8. typedef void(^GroupIntroduceModifyCallback)(NSString * _Nonnull introduceString);
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface GroupIntroduceBodyView : UIView
  11. @property (nonatomic, assign) BOOL canModify;
  12. + (instancetype)sharedInstance;
  13. - (void)configWithDesc:(NSString *)introduceString callback:(GroupIntroduceModifyCallback)callback;
  14. @end
  15. NS_ASSUME_NONNULL_END