123456789101112131415161718192021222324 |
- //
- // GroupIntroduceBodyView.h
- // KulexiuForTeacher
- //
- // Created by 王智 on 2024/12/30.
- //
- #import <UIKit/UIKit.h>
- typedef void(^GroupIntroduceModifyCallback)(NSString * _Nonnull introduceString);
- NS_ASSUME_NONNULL_BEGIN
- @interface GroupIntroduceBodyView : UIView
- @property (nonatomic, assign) BOOL canModify;
- + (instancetype)sharedInstance;
- - (void)configWithDesc:(NSString *)introduceString callback:(GroupIntroduceModifyCallback)callback;
- @end
- NS_ASSUME_NONNULL_END
|