22 lines
578 B
Objective-C
22 lines
578 B
Objective-C
//
|
|
// QBAlbumCell.h
|
|
// QBImagePicker
|
|
//
|
|
// Created by Katsuma Tanaka on 2015/04/03.
|
|
// Copyright (c) 2015 Katsuma Tanaka. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface QBAlbumCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *imageView1;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *imageView2;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *imageView3;
|
|
@property (weak, nonatomic) IBOutlet UILabel *titleLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *countLabel;
|
|
|
|
@property (nonatomic, assign) CGFloat borderWidth;
|
|
|
|
@end
|