| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // userItemCell14.m
- // YBVideo
- //
- // Created by cat on 16/3/10.
- // Copyright © 2016年 cat. All rights reserved.
- //
- #import "SetLogoutCell.h"
- @implementation SetLogoutCell
- - (void)awakeFromNib{
- [super awakeFromNib];
- _signOutL.text = YZMsg(@"退出登录");
- }
- -(instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{
-
- self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
- if (self) {
-
-
- }
- return self;
- }
- +(SetLogoutCell *)cellWithTableView:(UITableView *)tableView{
- SetLogoutCell *cell = [tableView dequeueReusableCellWithIdentifier:@"SetLogoutCell"];
-
- if (!cell) {
- cell = [[NSBundle mainBundle]loadNibNamed:@"SetLogoutCell" owner:self options:nil].lastObject;
- }
-
- return cell;
-
-
- }
- @end
|