12345678910111213141516171819202122 |
- //
- // JLBubbleViewCell.h
- // shiku_im
- //
- // Created by JayLuo on 2020/4/7.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface JLBubbleViewCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UIView *bgView;
- @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
- @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
- @property (weak, nonatomic) IBOutlet UIImageView *bubbleImageView;
- @property (assign, nonatomic) BOOL isBeSelected;
- @end
- NS_ASSUME_NONNULL_END
|