Files
yuyin_ios/SweetParty/主类/Mine/View/SPMineEditInfoCell.h

24 lines
537 B
C
Raw Normal View History

2025-08-08 11:05:33 +08:00
//
// 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