26 lines
473 B
Objective-C
26 lines
473 B
Objective-C
//
|
|
// XPMineFriendNumberView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/12/21.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPMineFriendNumberView : UIView
|
|
|
|
///显示数量
|
|
@property (nonatomic,copy) NSString *number;
|
|
///显示标题
|
|
@property (nonatomic,copy) NSString *title;
|
|
///是否为访客记录
|
|
@property (nonatomic, assign) BOOL isVisitor;
|
|
///访客角标
|
|
@property (nonatomic, assign) NSInteger visitorNum;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|