12345678910111213141516171819202122 |
- //
- // JXAnnounceCell.h
- // shiku_im
- //
- // Created by 1 on 2018/8/17.
- // Copyright © 2018年 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface JXAnnounceCell : UITableViewCell
- @property (nonatomic, strong) UIImageView *icon;
- @property (nonatomic, strong) UILabel *name;
- @property (nonatomic, strong) UILabel *time;
- @property (nonatomic, strong) UILabel *content;
- - (void)setCellHeightWithText:(NSString *)text;
- @end
|