-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathPerSetTableViewCell.m
37 lines (30 loc) · 979 Bytes
/
PerSetTableViewCell.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
// PerSetTableViewCell.m
// DSBBM
//
// Created by bisheng on 14-11-6.
// Copyright (c) 2014年 qt. All rights reserved.
//
#import "PerSetTableViewCell.h"
@implementation PerSetTableViewCell
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Initialization code
self.choose = [[UIImageView alloc] initWithFrame:CGRectMake(278,16.5, 17, 17)];
[self addSubview:self.choose];
UIView * line = [[UIView alloc] initWithFrame:CGRectMake(15, 49.5, 305, 0.5)];
line.backgroundColor = [UIcol hexStringToColor:@"#e6e6e6"];
[self addSubview:line];
}
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