12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #import "CCCellMain.h"
- @implementation CCCellMain
- - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
- {
- self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
- if (self) {
-
-
- }
- return self;
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated
- {
- [super setSelected:selected animated:animated];
-
- self.contentView.preservesSuperviewLayoutMargins = NO;
- }
- @end
|