20 lines
294 B
Objective-C
20 lines
294 B
Objective-C
//
|
|
// DSTextField.h
|
|
// DSChat
|
|
//
|
|
// Created by DSKJ on 2022/6/15.
|
|
// Copyright © 2022 DS. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DSTextField : UITextField
|
|
|
|
@property (nonatomic, copy) NSString *placeHolderString;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|