17 lines
309 B
Objective-C
Executable File
17 lines
309 B
Objective-C
Executable File
//
|
|
// SJPhotoAlbumCell.h
|
|
// SJPhotoPickerDemo
|
|
//
|
|
// Created by Jaesun on 16/8/22.
|
|
// Copyright © 2016年 S.J. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface SJPhotoAlbumCell : UITableViewCell
|
|
|
|
@property (nonatomic, strong) NSString *title;
|
|
@property (nonatomic, strong) UIImage *img;
|
|
|
|
@end
|