A UITextView with placeholder supported
- placeholder text and custom placehoder color
- iOS 7 compitible
With IB
With Code
RTPlaceholderTextView * textView = [[RTPlaceholderTextView alloc] init];
textView.placeholderText = @"placholder";
textView.placeholderTextColor = [UIColor redColor];
...