23 lines
448 B
Objective-C
23 lines
448 B
Objective-C
//
|
|
// KTThumbView.h
|
|
// KTPhotoBrowser
|
|
//
|
|
// Created by Kirby Turner on 2/3/10.
|
|
// Copyright 2010 White Peak Software Inc. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "KTThumbsViewController.h"
|
|
|
|
@interface KTThumbView : UIButton
|
|
|
|
|
|
@property (nonatomic, assign) KTThumbsViewController *controller;
|
|
|
|
- (id)initWithFrame:(CGRect)frame;
|
|
- (void)setThumbImage:(UIImage *)newImage;
|
|
- (void)setHasBorder:(BOOL)hasBorder;
|
|
|
|
@end
|
|
|