mirror of
https://github.com/leanote/leanote-ios.git
synced 2026-01-18 05:00:52 +08:00
16 lines
345 B
Objective-C
Executable File
16 lines
345 B
Objective-C
Executable File
#import <UIKit/UIKit.h>
|
|
|
|
@interface UIWebView (GUIFixes)
|
|
|
|
/**
|
|
* @brief The custom input accessory view.
|
|
*/
|
|
@property (nonatomic, strong, readwrite) UIView* customInputAccessoryView;
|
|
|
|
/**
|
|
* @brief Wether the UIWebView will use the fixes provided by this category or not.
|
|
*/
|
|
@property (nonatomic, assign, readwrite) BOOL usesGUIFixes;
|
|
|
|
@end
|