mirror of
https://github.com/wu736139669/Ash_First.git
synced 2026-08-05 05:55:21 +00:00
39 lines
626 B
Objective-C
Executable File
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
|