Is there a way to animate a change in the font size of some text. I was thinking to call drawRect from a subclass of UIView and draw the text at different sizes.
Go to “Settings” > “Control Center,” then find “Text Size” and tap the green plus sign. “Text Size” will now be part of the included controls. Once that's done, it's simple to tweak the text size for each app: Open the app that you want to configure.
There are no print size options for iPadOS. You'd need to increase the font size of the document prior to printing. To do that, select all text and use the icon shown in the image on the keyboard to adjust the font size.
You can animate the transform on any UIView including labels.
[UIView beginAnimations:nil context:nil];
label.transform = CGAffineTransformMakeScale(1.5,1.5);
[UIView commitAnimations];
That will scale the text up to 150%. It may become blocky if you make it too big.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With