0

When I pasted a text into my UITextField with attributed.text the font of the UITextField was also changed to the font that was pasted.

Daniel Åkesson
  • 1,330
  • 1
  • 12
  • 21

1 Answers1

0

Adding beginediting and endediting solved the problem

NSMutableAttributedString *attrUrl = [[NSMutableAttributedString alloc] initWithString:@"Hello world"];

[attrUrl beginEditing];
[attrUrl addAttribute:.....];

[attrUrl endEditing];
Daniel Åkesson
  • 1,330
  • 1
  • 12
  • 21