Files
mier_ios/SweetParty/主类/Mine/View/SPMineEditInfoCell.h
2025-08-11 10:43:19 +08:00

24 lines
537 B
Objective-C
Executable File

//
// SPMineEditInfoCell.h
// SweetParty
//
// Created by bj_szd on 2022/6/9.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface SPMineEditInfoCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *titleLab;
@property (weak, nonatomic) IBOutlet UITextField *contentTF;
@property (weak, nonatomic) IBOutlet UIImageView *avatarImgV;
@property (nonatomic, copy)void(^onUploadAvatarBlock)(NSString *headUrlStr);
@property (nonatomic, copy)void(^textChangeBlock)(NSString *text);
@end
NS_ASSUME_NONNULL_END