123456789101112131415161718192021222324 |
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface EMTextViewController : UIViewController
- @property (nonatomic, copy) BOOL (^doneCompletion)(NSString *aString);
- - (instancetype)initWithString:(NSString *)aString
- placeholder:(NSString *)aPlaceholder
- isEditable:(BOOL)aIsEditable;
- @end
- NS_ASSUME_NONNULL_END
|