mirror of
https://github.com/leanote/leanote-ios.git
synced 2025-10-17 08:38:23 +00:00
21 lines
454 B
Objective-C
Executable File
21 lines
454 B
Objective-C
Executable File
#import <UIKit/UIKit.h>
|
|
|
|
@interface WPEditorToolbarButton : UIButton
|
|
|
|
#pragma mark - Memory warnings support
|
|
|
|
@property (nonatomic, copy, readwrite) UIColor *normalTintColor;
|
|
@property (nonatomic, copy, readwrite) UIColor *selectedTintColor;
|
|
|
|
@property (nonatomic) BOOL isMarkdown;
|
|
|
|
|
|
#pragma mark - Memory related
|
|
|
|
/**
|
|
* @brief Calling this method makes sure all memory that can be released will be released.
|
|
*/
|
|
- (void)didReceiveMemoryWarning;
|
|
|
|
@end
|