| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // BuildingCell.h
- // IBOSS
- //
- // Created by 关宏厚 on 2020/7/27.
- // Copyright © 2020 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface BuildingCell : UITableViewCell
- /**
- 门牌号控件
- */
- @property (nonatomic, strong) UILabel *buildingLabelView;
- /**
- 门牌号控件
- */
- @property (nonatomic, strong) UILabel *buildingView;
- /**
- 门牌号
- */
- @property (nonatomic, strong) NSString *building;
- /**
- 高度
- */
- @property (nonatomic, assign) CGFloat height;
- /**
- 设置地址值
-
- @param address <#address description#>
- */
- - (void)setBuilding:(NSString *)building;
- @end
|