1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // CollectionViewCell.m
- // 多选图片
- //
- // Created by holier_zyq on 2016/10/24.
- // Copyright © 2016年 holier_zyq. All rights reserved.
- //
- #import "CollectionViewCell.h"
- @implementation CollectionViewCell
- - (instancetype)initWithFrame:(CGRect)frame{
- self = [super initWithFrame:frame];
- if (self) {
- [self addSubview:self.imagev];
- [self addSubview:self.deleteButton];
- }
- return self;
- }
- - (UIImageView *)imagev{
- if (!_imagev) {
- self.imagev = [[UIImageView alloc] initWithFrame:CGRectMake(0, 3, 45, 45)];
- // _imagev.backgroundColor = [UIColor blueColor];
- }
- return _imagev;
- }
- - (UIButton *)deleteButton{
- if (!_deleteButton) {
- self.deleteButton = [UIButton buttonWithType:UIButtonTypeCustom];
- _deleteButton.frame = CGRectMake(CGRectGetWidth(self.bounds)-20, 0, 20, 20);
- [_deleteButton setBackgroundImage:[UIImage imageNamed:@"comp_del"] forState:UIControlStateNormal];
- }
- return _deleteButton;
- }
- @end
|