您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
32 行
811 B
32 行
811 B
#ifndef PLATFORM_IOS_FRAMEWORK_SOURCE_UIWIDGETSTEXTINPUTPLUGIN_H_
|
|
#define PLATFORM_IOS_FRAMEWORK_SOURCE_UIWIDGETSTEXTINPUTPLUGIN_H_
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#include "UIWidgetsTextInputDelegate.h"
|
|
|
|
@interface UIWidgetsTextInputPlugin : NSObject
|
|
|
|
@property(nonatomic, assign) id<UIWidgetsTextInputDelegate> textInputDelegate;
|
|
|
|
- (UIView<UITextInput>*)textInputView;
|
|
|
|
@end
|
|
|
|
@interface UIWidgetsTextPosition : UITextPosition
|
|
|
|
@property(nonatomic, readonly) NSUInteger index;
|
|
|
|
+ (instancetype)positionWithIndex:(NSUInteger)index;
|
|
- (instancetype)initWithIndex:(NSUInteger)index;
|
|
|
|
@end
|
|
|
|
@interface UIWidgetsTextRange : UITextRange <NSCopying>
|
|
|
|
@property(nonatomic, readonly) NSRange range;
|
|
|
|
+ (instancetype)rangeWithNSRange:(NSRange)range;
|
|
|
|
@end
|
|
|
|
#endif // PLATFORM_IOS_FRAMEWORK_SOURCE_UIWIDGETSTEXTINPUTPLUGIN_H_
|