Hi guys,
First of all, I wish to thank you for the tremendous help you have offered me, a novice iOS developer.
OK, I now have a new problem to solve. My app has a bunch of text views and the font sizes are too small. But there are so many text views that it'd take me forever to set the font size on all of them. So I want to set the size programmatically.
I have started with this code, which is located in FirstViewController.m, where my text views are:
Now I just need to apply this font to all the text views. Once again, I will appreciate any help I can get!
First of all, I wish to thank you for the tremendous help you have offered me, a novice iOS developer.
OK, I now have a new problem to solve. My app has a bunch of text views and the font sizes are too small. But there are so many text views that it'd take me forever to set the font size on all of them. So I want to set the size programmatically.
I have started with this code, which is located in FirstViewController.m, where my text views are:
Code:
-(void) viewDidLoad
UIFont *theTextviewFont = [fontWithName: @"Arial" size:20];
@end
Now I just need to apply this font to all the text views. Once again, I will appreciate any help I can get!