I have a placeholder text for my UITextField which one part should have larger font size rather than the rest of the placeholder text. Can I do this using attributedPlaceHolder property ? It does not seems to respect the font size I am adding through a attributed string.
Currently I am trying one font size , but it does not seems to work either ,
NSAttributedString *placeholder = [[NSAttributedString alloc] initWithString:placeholderText
attributes:@{NSFontAttributeName : [UIFont fontWithName:textField.font.fontName size:8.0]}];
textField.attributedPlaceholder = placeholder;