// // DetailImageCell.m // RedAnt ERP Mobile // // Created by Ray on 14-7-31. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved. // #import "DetailImageCell.h" @implementation DetailImageCell - (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