BuildingCell.h 608 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // BuildingCell.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2020/7/27.
  6. // Copyright © 2020 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface BuildingCell : UITableViewCell
  10. /**
  11. 门牌号控件
  12. */
  13. @property (nonatomic, strong) UILabel *buildingLabelView;
  14. /**
  15. 门牌号控件
  16. */
  17. @property (nonatomic, strong) UILabel *buildingView;
  18. /**
  19. 门牌号
  20. */
  21. @property (nonatomic, strong) NSString *building;
  22. /**
  23. 高度
  24. */
  25. @property (nonatomic, assign) CGFloat height;
  26. /**
  27. 设置地址值
  28. @param address <#address description#>
  29. */
  30. - (void)setBuilding:(NSString *)building;
  31. @end