SetLogoutCell.m 841 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // userItemCell14.m
  3. // YBVideo
  4. //
  5. // Created by cat on 16/3/10.
  6. // Copyright © 2016年 cat. All rights reserved.
  7. //
  8. #import "SetLogoutCell.h"
  9. @implementation SetLogoutCell
  10. - (void)awakeFromNib{
  11. [super awakeFromNib];
  12. _signOutL.text = YZMsg(@"退出登录");
  13. }
  14. -(instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{
  15. self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
  16. if (self) {
  17. }
  18. return self;
  19. }
  20. +(SetLogoutCell *)cellWithTableView:(UITableView *)tableView{
  21. SetLogoutCell *cell = [tableView dequeueReusableCellWithIdentifier:@"SetLogoutCell"];
  22. if (!cell) {
  23. cell = [[NSBundle mainBundle]loadNibNamed:@"SetLogoutCell" owner:self options:nil].lastObject;
  24. }
  25. return cell;
  26. }
  27. @end