mirror of
https://github.com/leanote/leanote-ios.git
synced 2025-10-15 15:40:44 +00:00
18 lines
373 B
Objective-C
Executable File
18 lines
373 B
Objective-C
Executable File
//
|
|
// ZSSTextView.h
|
|
// ZSSRichTextEditor
|
|
//
|
|
// Created by Nicholas Hubbard on 1/29/14.
|
|
// Copyright (c) 2014 Zed Said Studio. All rights reserved.
|
|
//
|
|
|
|
#import "CYRTextView.h"
|
|
|
|
@interface ZSSTextView : CYRTextView
|
|
|
|
@property (nonatomic, strong) UIFont *defaultFont;
|
|
@property (nonatomic, strong) UIFont *boldFont;
|
|
@property (nonatomic, strong) UIFont *italicFont;
|
|
|
|
@end
|