BBATextView.h 855 Bytes
//
//  BBATextView.h
//  BBAPods
//
//  Created by liumuye on 16/11/29.
//  Copyright © 2016年 Baidu. All rights reserved.
//

#import <UIKit/UIKit.h>

// @class - BBATextView
// @brief - 支持Placeholder... (参考:https://github.com/devxoul/UITextView-Placeholder)
@interface BBATextView : UITextView

@property (nonatomic, readonly) UILabel *bba_placeholderLabel;
/** placeholder 
 *
 * 注:搜狗输入法会在非主线程调用placeholder方法引起crash,故添加bba_前缀。crash原因是get方法里调用了placeholderLabel.text.
 */
@property (nonatomic, strong) IBInspectable NSString *bba_placeholder;
@property (nonatomic, strong) NSAttributedString *bba_attributedPlaceholder;
@property (nonatomic, strong) IBInspectable UIColor *bba_placeholderColor;

+ (UIColor *)defaultPlaceholderColor;
- (void)updatePlaceholderLabel;

@end