mirror of
https://github.com/wu736139669/ManagerDemo.git
synced 2026-08-06 06:14:32 +00:00
36 lines
720 B
Objective-C
36 lines
720 B
Objective-C
//
|
|
// DailyIncomeTableViewCell.m
|
|
// ManagerDemo
|
|
//
|
|
// Created by xmfish on 14-9-1.
|
|
// Copyright (c) 2014年 ash. All rights reserved.
|
|
//
|
|
|
|
#import "DailyIncomeTableViewCell.h"
|
|
|
|
@implementation DailyIncomeTableViewCell
|
|
|
|
- (void)awakeFromNib
|
|
{
|
|
// Initialization code
|
|
_profitId = @"";
|
|
}
|
|
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
|
|
{
|
|
[super setSelected:selected animated:animated];
|
|
|
|
// Configure the view for the selected state
|
|
}
|
|
|
|
- (void)layoutSubviews {
|
|
[super layoutSubviews];
|
|
|
|
for (UIView *subview in self.contentView.superview.subviews) {
|
|
if ([NSStringFromClass(subview.class) hasSuffix:@"SeparatorView"]) {
|
|
subview.hidden = NO;
|
|
}
|
|
}
|
|
}
|
|
@end
|