ZFOtherCell.m 639 B

123456789101112131415161718192021222324252627
  1. //
  2. // ZFOtherCell.m
  3. // ZFPlayer_Example
  4. //
  5. // Created by 任子丰 on 2018/6/21.
  6. // Copyright © 2018年 紫枫. All rights reserved.
  7. //
  8. #import "ZFOtherCell.h"
  9. @interface ZFOtherCell ()
  10. @end
  11. @implementation ZFOtherCell
  12. - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
  13. self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
  14. if (self) {
  15. self.selectionStyle = UITableViewCellSelectionStyleNone;
  16. self.textLabel.text = @"这是非视频类型cell";
  17. self.textLabel.textAlignment = NSTextAlignmentCenter;
  18. }
  19. return self;
  20. }
  21. @end