Files
Ash_First/DoImagePicker/DoPhotoCell.m
T
2014-08-08 11:29:05 +08:00

39 lines
626 B
Objective-C
Executable File

//
// DoPhotoCell.m
// DoImagePickerController
//
// Created by Donobono on 2014. 1. 23..
//
#import "DoPhotoCell.h"
@implementation DoPhotoCell
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code
}
return self;
}
- (void)setSelectMode:(BOOL)bSelect
{
if (bSelect)
_ivPhoto.alpha = 0.2;
else
_ivPhoto.alpha = 1.0;
}
/*
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect
{
// Drawing code
}
*/
@end