CommonEditorCellSwitch.m 713 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // CommonEditorCellSwitch.m
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 14-7-17.
  6. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import "CommonEditorCellSwitch.h"
  9. @implementation CommonEditorCellSwitch
  10. - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
  11. {
  12. self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
  13. if (self) {
  14. // Initialization code
  15. }
  16. return self;
  17. }
  18. - (void)awakeFromNib
  19. {
  20. // Initialization code
  21. }
  22. - (void)setSelected:(BOOL)selected animated:(BOOL)animated
  23. {
  24. [super setSelected:selected animated:animated];
  25. // Configure the view for the selected state
  26. }
  27. @end