Textfield Attributed Placeholder

UIColor *color = [UIColor whiteColor];

self.txtF_EmailID.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@”Email id” attributes:@{NSForegroundColorAttributeName: color}];

Leave a comment