123456789101112131415161718 |
- //
- // SZTextView.h
- // SZTextView
- //
- // Created by glaszig on 14.03.13.
- // Copyright (c) 2013 glaszig. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface SZTextView : UITextView
- @property (copy, nonatomic) NSString *placeholder;
- @property (copy, nonatomic) NSAttributedString *attributedPlaceholder;
- @property (retain, nonatomic) UIColor *placeholderTextColor UI_APPEARANCE_SELECTOR;
- @end
|