12345678910111213141516171819202122 |
- //
- // JXTalkDetailView.h
- // shiku_im
- //
- // Created by p on 2019/8/16.
- // Copyright © 2019 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface JXTalkDetailView : UIView
- @property (nonatomic, strong) UIImageView *headImageView;
- @property (nonatomic, strong) UILabel *nameLabel;
- @property (nonatomic, strong) UILabel *lastLabel;
- @property (nonatomic, strong) UILabel *talkLable;
- @end
- NS_ASSUME_NONNULL_END
|