22 lines
574 B
C
22 lines
574 B
C
|
//
|
||
|
// QBCheckmarkView.h
|
||
|
// QBImagePicker
|
||
|
//
|
||
|
// Created by Katsuma Tanaka on 2015/04/03.
|
||
|
// Copyright (c) 2015 Katsuma Tanaka. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
IB_DESIGNABLE
|
||
|
@interface QBCheckmarkView : UIView
|
||
|
|
||
|
@property (nonatomic, assign) IBInspectable CGFloat borderWidth;
|
||
|
@property (nonatomic, assign) IBInspectable CGFloat checkmarkLineWidth;
|
||
|
|
||
|
@property (nonatomic, strong) IBInspectable UIColor *borderColor;
|
||
|
@property (nonatomic, strong) IBInspectable UIColor *bodyColor;
|
||
|
@property (nonatomic, strong) IBInspectable UIColor *checkmarkColor;
|
||
|
|
||
|
@end
|