12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- //
- // JXRechargeCell.m
- // shiku_im
- //
- // Created by 1 on 17/10/30.
- // Copyright © 2017年 Reese. All rights reserved.
- //
- #import "JXRechargeCell.h"
- @implementation JXRechargeCell
- -(instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{
- if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
- self.selectionStyle = UITableViewCellSelectionStyleNone;
- [self customSubviews];
- }
- return self;
- }
- -(void)customSubviews{
-
- // self.backgroundColor = [UIColor whiteColor];
- // self.contentView.backgroundColor = [UIColor clearColor];
- // //职位信息
- // _bgView = [[UIView alloc] initWithFrame:CGRectMake(10, 10, JX_SCREEN_WIDTH-20, 80)];
- // _bgView.backgroundColor = [UIColor whiteColor];
- // _bgView.layer.masksToBounds = YES;
- // _bgView.layer.cornerRadius = 5;
- // _bgView.layer.borderWidth = 0.8;
- // _bgView.layer.borderColor = [[UIColor colorWithRed:0.9 green:0.9 blue:0.9 alpha:1] CGColor];
- // [self.contentView addSubview:_bgView];
-
-
- _checkButton = [UIButton buttonWithType:UIButtonTypeCustom];
- _checkButton.frame = CGRectMake(JX_SCREEN_WIDTH-15-40, 0, 40, 40);
- _checkButton.center = CGPointMake(_checkButton.center.x, 65/2);
- [_checkButton setImage:[UIImage imageNamed:@"unchecked_round"] forState:UIControlStateNormal];
- [_checkButton setImage:[UIImage imageNamed:@"checked_round"] forState:UIControlStateSelected];
- // _checkButton.tag = index;
- _checkButton.userInteractionEnabled = NO;
- // [checkButton addTarget:self action:@selector(checkButtonAction:) forControlEvents:UIControlEventTouchUpInside];
- [self.contentView addSubview:_checkButton];
- }
- -(void)layoutSubviews{
- [super layoutSubviews];
- _checkButton.frame = CGRectMake(JX_SCREEN_WIDTH-15-40, 0, 40, 40);
- _checkButton.center = CGPointMake(_checkButton.center.x, 65/2);
- [self.contentView bringSubviewToFront:_checkButton];
- }
- -(void)prepareForReuse{
- [super prepareForReuse];
- self.checkButton.selected = NO;
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|