1234567891011121314151617181920212223242526272829 |
- //
- // NeighbourCell.h
- // jiaPei
- //
- // Created by apple on 2017/6/30.
- // Copyright © 2017年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "RatingBar.h"
- @interface NeighbourCell : UITableViewCell
- @property (nonatomic, strong) UILabel *titlelabel;
- @property (nonatomic, strong) UILabel *readLabel;
- @property (nonatomic, strong) UILabel *priceLabel;
- @property (nonatomic, strong) UILabel *memoLabel;
- @property (nonatomic, strong) UILabel *adressLabel;
- @property (nonatomic, strong) RatingBar *starBar;
- @property (nonatomic, strong) NSDictionary *dataDic;
- @end
|