UI之UILabel和UIImageView

一、UILabel的基本属性和风格化

1.UILabel的基本属性

UILabel继承自UIView类,我们通过UILabel来对文字进行操作

UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];// 初始化UILabel
label.text = @"Hello world";// 设置文字
label.backgroundColor = [UIColor blackColor];// 设置背景色
label.textColor = [UIColor orangeColor];// 设置文字颜色
label.font = [UIFont systemFontOfSize:20];// 设置字体 label.textAlignment = NSTextAlignmentCenter;// 设置居中样式

2.UILabel的风格化

有时候我们需要改变文字的样式,变成我们想要的风格,代码如下:

NSString *aString = @"iOS";
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 200, 375, 45)];
label.text = aString;
label.textAlignment = NSTextAlignmentCenter;
 NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:aString];
 // 改变文字的字体
[attributedString addAttribute:NSFontAttributeName value:
[UIFont systemFontOfSize:50] range:NSMakeRange(0, 1)];
[attributedString addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:30] range:NSMakeRange(1, 2)];
// 改变文字的颜色
[attributedString addAttribute:NSBackgroundColorAttributeName value:[UIColor blackColor] range:NSMakeRange(0, 1)];
[attributedString addAttribute:NSForegroundColorAttributeName value:[UIColor whiteColor] range:NSMakeRange(0, 1)];
[self.view addSubview:label];

实现效果如图:
UI之UILabel和UIImageView_第1张图片


二、UIImageView对图片的操作

1.UIImageView实现图片的轮播动画

UIImageView继承自UIView类,我们通过UIImagView来对图片进行操作

// 初始化UIImageView
 UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 100, 300, 300)];
NSMutableArray *imageArray = [NSMutableArray array];
// 通过循环向数组中添加三张图片
for (NSUInteger i = 0; i < 3; i++) {
    UIImage *image = [UIImage imageNamed:[NSString       stringWithFormat:@"%zd",i]];
    [imageArray addObject:image];
    }
    [imageView setAnimationImages:imageArray];
// 设置图片轮播的间隔时间
    [imageView setAnimationDuration:1];
// 设置重复次数为无限
    [imageView setAnimationRepeatCount:0];
    [imageView startAnimating];

你可能感兴趣的:(UI之UILabel和UIImageView)