20 lines
422 B
Objective-C
20 lines
422 B
Objective-C
//
|
|
// ICGVideoTrimmerLeftOverlay.h
|
|
// ICGVideoTrimmer
|
|
//
|
|
// Created by Huong Do on 1/19/15.
|
|
// Copyright (c) 2015 ichigo. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface ICGThumbView : UIView
|
|
|
|
@property (strong, nonatomic) UIColor *color;
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame color:(UIColor *)color right:(BOOL)flag;
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame thumbImage:(UIImage *)image;
|
|
|
|
@end
|