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];

实现效果如图:
UILabel风格化


二、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];

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值