| | |
| | | // |
| | | // IQTextView.h |
| | | // IQTextView.h |
| | | // https://github.com/hackiftekhar/IQKeyboardManager |
| | | // Copyright (c) 2013-15 Iftekhar Qurashi. |
| | | // Copyright (c) 2013-16 Iftekhar Qurashi. |
| | | // |
| | | // Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | // of this software and associated documentation files (the "Software"), to deal |
| | |
| | | /** |
| | | Set textView's placeholder text. Default is nil. |
| | | */ |
| | | @property(nullable, nonatomic,copy) NSString *placeholder; |
| | | @property(nullable, nonatomic,copy) IBInspectable NSString *placeholder; |
| | | |
| | | /** |
| | | Set textView's placeholder attributed text. Default is nil. |
| | | */ |
| | | @property(nullable, nonatomic,copy) IBInspectable NSAttributedString *attributedPlaceholder; |
| | | |
| | | /** |
| | | To set textView's placeholder text color. Default is nil. |
| | | */ |
| | | @property(nullable, nonatomic,copy) IBInspectable UIColor *placeholderTextColor; |
| | | |
| | | @end |
| | | |