DetailTableViewCell.m 398 B

1234567891011121314151617181920212223
  1. //
  2. // DetailTableViewCell.m
  3. // BDVRClientDemo
  4. //
  5. // Created by baidu on 16/3/15.
  6. // Copyright © 2016年 baidu. All rights reserved.
  7. //
  8. #import "DetailTableViewCell.h"
  9. @interface DetailTableViewCell ()
  10. @property (weak, nonatomic) IBOutlet UILabel *detailLabel;
  11. @end
  12. @implementation DetailTableViewCell
  13. - (void)setDetailTitle:(NSString *)title {
  14. self.detailLabel.text = title;
  15. }
  16. @end