43 lines
946 B
Objective-C
43 lines
946 B
Objective-C
//
|
|
// QRPhotoAlbumButton.h
|
|
// Unity-iPhone
|
|
//
|
|
// Created by zhl on 2022/12/6.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QRPhotoAlbumButton : UIButton
|
|
/**
|
|
* @abstract The edge color of the drawing.
|
|
* @discussion The default color is the white.
|
|
* @since 2.0.0
|
|
*/
|
|
@property (nonatomic, strong) UIColor *edgeColor;
|
|
|
|
/**
|
|
* @abstract The fill color of the drawing.
|
|
* @discussion The default color is the darkgray.
|
|
* @since 2.0.0
|
|
*/
|
|
@property (nonatomic, strong) UIColor *fillColor;
|
|
|
|
/**
|
|
* @abstract The edge color of the drawing when the button is touched.
|
|
* @discussion The default color is the white.
|
|
* @since 2.0.0
|
|
*/
|
|
@property (nonatomic, strong) UIColor *edgeHighlightedColor;
|
|
|
|
/**
|
|
* @abstract The fill color of the drawing when the button is touched.
|
|
* @discussion The default color is the black.
|
|
* @since 2.0.0
|
|
*/
|
|
@property (nonatomic, strong) UIColor *fillHighlightedColor;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|