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.
Asked
Active
Viewed 20 times
1 Answers
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