| 12345678910111213141516171819 |
- //
- // KNTableViewCell.m
- // kneet2
- //
- // Created by Jason Lee on 10/8/15.
- // Copyright © 2015 ntels. All rights reserved.
- //
- #import "KNTableViewCell.h"
- @implementation KNTableViewCell
- - (void)awakeFromNib {
- // Initialization code
- self.selectionStyle = UITableViewCellSelectionStyleNone;
- }
- @end
|