VisionWallPaperOffline-8-19/HDwallpaper/Tool/CustomTextView.h
2024-07-23 15:14:59 +08:00

22 lines
430 B
Objective-C

//
// CustomTextView.h
// HD wallpaper
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface CustomTextView : UITextView
@property (nonatomic, strong) NSString *placeholder;
@property (nonatomic, strong) UIColor *placeholderColor;
@property (nonatomic, strong) UIColor *borderColor;
@property (nonatomic, assign) CGFloat borderWidth;
@property (nonatomic, assign) CGFloat cornerRadius;
@end
NS_ASSUME_NONNULL_END