1234567891011121314151617181920 |
- //
- // FKInviteTableCell.h
- // FirstLink
- //
- // Created by jack on 16/5/28.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "AvatarImageView.h"
- @interface FKInviteTableCell : UITableViewCell
- @property (nonatomic, strong) AvatarImageView *imgView;
- @property (nonatomic, strong) UILabel *nameLabel;
- @property (nonatomic, strong) UILabel *titleLabel;
- @end
|