24 lines
559 B
C
24 lines
559 B
C
|
|
//
|
||
|
|
// SPSingleChatNavView.h
|
||
|
|
// SweetParty
|
||
|
|
//
|
||
|
|
// Created by bj_szd on 2022/6/16.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface SPSingleChatNavView : UIView
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIButton *reportBtn;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIButton *backBtn;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *avatarImgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIButton *focusBtn;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIButton *homepageBtn;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|