| 1234567891011121314151617181920212223 |
- //
- // BundleModelCell.m
- // RedAnt ERP Mobile
- //
- // Created by Ray on 10/31/15.
- // Copyright © 2015 United Software Applications, Inc. All rights reserved.
- //
- #import "BundleModelCell.h"
- @implementation BundleModelCell
- - (void)awakeFromNib {
- // Initialization code
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|