IOS开发-UI学习-UIFont,字体设置及批量创建控件
在IOS 中,使用[UIFont familyNames]这个方法获取72种系统字体。
使用[UIFont fontWithName:@"Zapfino" size:18]这个方法为空间中的文字设置字体和字号。
可以通过for循环批量定义控件并设置属性。
以下程序获取系统72种字体并存储在一个数组中,有两种方法,一种是通过for循环拿到每一种字体并添加到可变数组中,另一种是直接把72种字体赋值给一个数组。
注:在页面控件较少的情况下选择手动创建每个控件,在控件数量较大且有规律排布的时候使用循环批量创建控件。可以通过获取硬件设备的分辨率进而让控件的尺寸自动适配设备。具体方式为:
1 //屏幕尺寸 2 CGRect rect = [[UIScreen mainScreen] bounds]; 3 CGSize size = rect.size; 4 CGFloat width = size.width; 5 CGFloat height = size.height; 6 NSLog(@"print %f,%f",width,height); 7 8 //分辨率 9 CGFloat scale_screen = [UIScreen mainScreen].scale; 10 width*scale_screen,height*scale_screen
程序内容:
1 #import "ViewController.h" 2 3 @interface ViewController () 4 5 @end 6 7 @implementation ViewController 8 9 - (void)viewDidLoad { 10 [super viewDidLoad]; 11 12 13 // 定义一个可变数组,用来存放所有字体 14 NSMutableArray *fontarray = [NSMutableArray arrayWithCapacity:10]; 15 // 遍历UI字体 16 for (id x in [UIFont familyNames]) { 17 NSLog(@"%@",x); 18 [fontarray addObject:x]; 19 } 20 21 22 // 直接把字体存储到数组中 23 NSArray *fontarrauy2 = [UIFont familyNames]; 24 NSLog(@"%@",fontarrauy2); 25 26 27 // 创建一个label,用来显示设定某种字体的字符串 28 UILabel *mylab1 = [[UILabel alloc]initWithFrame:CGRectMake(100, 100, 200, 50)]; 29 mylab1.font = [UIFont systemFontOfSize:20]; 30 mylab1.font = [UIFont fontWithName:@"Zapfino" size:18]; 31 mylab1.font = [UIFont fontWithName:[fontarray objectAtIndex:10] size:18]; 32 mylab1.text = @"HelloWorld"; 33 [self.view addSubview:mylab1]; 34 35 // 新建一个可变数组,用来存放使用for循环批量创建的label 36 NSMutableArray *labarr = [NSMutableArray arrayWithCapacity:100]; 37 38 for (int x=0; x<24; x++) { 39 for (int y=0; y<3; y++) { 40 // 循环创建72个label,每个label横向间距135-130=5,纵向间距30-28=2, 41 UILabel *lab = [[UILabel alloc]initWithFrame:CGRectMake(y*135+7, x*30+20, 130, 28)]; 42 lab.backgroundColor = [UIColor colorWithRed:0.820 green:0.971 blue:1.000 alpha:1.000]; 43 lab.text = @"HelloWorld"; 44 // 将创建好的label加入到可变数组 45 [labarr addObject:lab]; 46 } 47 } 48 49 // 使用for循环给72个label的字体设置各种字体格式 50 for (int i=0; i<72; i++) { 51 UILabel *lab = [labarr objectAtIndex:i]; 52 NSString *fontstring = [fontarray objectAtIndex:i]; 53 lab.font = [UIFont fontWithName:fontstring size:18]; 54 [self.view addSubview:[labarr objectAtIndex:i]]; 55 } 56 57 } 58 59 - (void)didReceiveMemoryWarning { 60 [super didReceiveMemoryWarning]; 61 // Dispose of any resources that can be recreated. 62 } 63 64 @end
程序模拟运行效果如下: