mirror of
https://github.com/wu736139669/Ash_First.git
synced 2026-08-05 05:55:21 +00:00
18 lines
337 B
Objective-C
Executable File
18 lines
337 B
Objective-C
Executable File
//
|
|
// DoPhotoCell.h
|
|
// DoImagePickerController
|
|
//
|
|
// Created by Donobono on 2014. 1. 23..
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface DoPhotoCell : UICollectionViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *ivPhoto;
|
|
@property (weak, nonatomic) IBOutlet UIView *vSelect;
|
|
|
|
- (void)setSelectMode:(BOOL)bSelect;
|
|
|
|
@end
|