KNTableViewCell.m 311 B

12345678910111213141516171819
  1. //
  2. // KNTableViewCell.m
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 10/8/15.
  6. // Copyright © 2015 ntels. All rights reserved.
  7. //
  8. #import "KNTableViewCell.h"
  9. @implementation KNTableViewCell
  10. - (void)awakeFromNib {
  11. // Initialization code
  12. self.selectionStyle = UITableViewCellSelectionStyleNone;
  13. }
  14. @end