30 lines
746 B
Objective-C
30 lines
746 B
Objective-C
//
|
|
// FishDocSection0ViewlablCell.m
|
|
// Ifish
|
|
//
|
|
// Created by imac on 17/2/20.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import "FishDocSection0ViewlablCell.h"
|
|
|
|
@implementation FishDocSection0ViewlablCell
|
|
|
|
- (void)awakeFromNib {
|
|
[super awakeFromNib];
|
|
// Initialization code
|
|
self.firstPoint.layer.masksToBounds = YES;
|
|
self.firstPoint.layer.cornerRadius = CGRectGetHeight(self.firstPoint.frame)/2;
|
|
self.secondPoint.layer.masksToBounds = YES;
|
|
self.secondPoint.layer.cornerRadius = CGRectGetHeight(self.secondPoint.frame)/2;
|
|
|
|
}
|
|
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
|
[super setSelected:selected animated:animated];
|
|
|
|
// Configure the view for the selected state
|
|
}
|
|
|
|
@end
|