You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
//
|
|
|
|
// EditSelectContactViewController.h
|
|
|
|
// LekangGuard
|
|
|
|
//
|
|
|
|
// Created by ecell on 2022/12/8.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "BaseViewController.h"
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@interface EditSelectContactViewController : BaseViewController
|
|
|
|
|
|
|
|
/// string example: 与孩子关系头像id
|
|
|
|
@property (nonatomic ,assign) NSInteger relationImageId;
|
|
|
|
|
|
|
|
@property (nonatomic ,strong) NSString *relationName;
|
|
|
|
|
|
|
|
@property (nonatomic ,strong) void(^isSelectMsg)(NSInteger relationImageId ,NSString *name);
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|