| 1234567891011121314151617181920212223242526272829 |
- //
- // selectOrderTableViewCell.m
- // iSales-NPD
- //
- // Created by Ray on 9/3/16.
- // Copyright © 2016 United Software Applications, Inc. All rights reserved.
- //
- #import "SelectOrderTableViewCell.h"
- @implementation SelectOrderTableViewCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
-
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
-
- // self.selected = NO;
- // self.checkedButton.selected = !self.checkedButton.selected;
-
- }
- @end
|