| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // CommonEditorCellSignature.m
- // RedAnt ERP Mobile
- //
- // Created by Ray on 14-8-7.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import "CommonEditorCellSignature.h"
- @implementation CommonEditorCellSignature
- - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
- {
- self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
- if (self) {
- // Initialization code
- }
- return self;
- }
- - (void)awakeFromNib
- {
- // Initialization code
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated
- {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|