1234567891011121314151617181920212223242526272829303132333435 |
- //
- // AccountAndSecurityTableViewCell.m
- // ChinaTheoryNetwork
- //
- // Created by 张毅成 on 2019/1/28.
- // Copyright © 2019 张毅成. All rights reserved.
- //
- #import "AccountAndSecurityTableViewCell.h"
- @implementation AccountAndSecurityTableViewCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- + (instancetype)cellWithTableView:(UITableView *)tableView {
- static NSString *ID = @"AccountAndSecurityTableViewCell";
- AccountAndSecurityTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
- if (cell == nil) {
- cell = [[[NSBundle mainBundle] loadNibNamed:ID owner:self options:nil] firstObject];
- }
- cell.selectionStyle = UITableViewCellSelectionStyleNone;
- return cell;
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|