UILabel+UIImageView(动画)

UILabel 标签控件,适合放一些短的文本。
UILabel 继承于 UIView

要把创建的视图放在他的父视图上
[self.window addSubview:label];

UILabel的属性
①把label对象实例化,并设置fram(任何对象都要实例化
UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(200, 200, 200, 40)];
②设置文本
label.text = @"Starasdfghjklzxcadsgvbnv";
③label背景颜色
label.backgroundColor = [UIColor redColor];
④设置字体颜色
label. textColor = [ UIColor whiteColor ];   
⑤设置对齐方式
label.textAlignment = NSTextAlignmentCenter;
⑥设置字体大小
label. font = [ UIFont systemFontOfSize : 22 ];
⑦在加粗的同时设置字体大小
label.font = [UIFont boldSystemFontOfSize:24];   
⑧在设置斜体的同时,设置字体大小
label. font = [ UIFont italicSystemFontOfSize : 25 ];   
⑨shadowColor设置阴影并设置阴影颜色
label.shadowColor = [UIColor blackColor];
⑩shadowOffset设置阴影偏移量
label. shadowOffset = CGSizeMake ( 2 , 4 );    
⑪给内容设置行数,0代表自适应行数,非0,是几行就是几行
label. numberOfLines = 0 ;   
⑫自适应字体,让内容尽量一行显示
label.adjustsFontSizeToFitWidth = YES;
--------------------------------------------------------
UIImageView 用来显示图片
UIImageView *imgView = [[ UIImageView alloc ] initWithFrame : CGRectMake ( 10 , 10 , 300 , 300 )];

如果图片是PNG格式,图片名不需要加后缀,否则都要加
  imgView.image = [UIImage imageNamed:@"1.tiff"];

创建帧动画四要素:
  1. 设置间隔时间
  2. 准备图片素材
  3. 设置重复次数
  4.开始动画

①设置动画的时间间隔
  imgView.animationDuration = 2;
②给帧动画准备素材
  UIImage *img1 = [ UIImage imageNamed : @"1.tiff" ];
  UIImage *img2 = [UIImage imageNamed:@"2.tiff"];
  UIImage *img3 = [ UIImage imageNamed : @"3.tiff" ];
  NSArray *array = @[img1,img2,img3];
  imgView. animationImages = array;
③给动画设置重复次数(0是无限循环)
  imgView.animationRepeatCount = 0;
④开始动画
  [imgView startAnimating];

延迟多少秒后执行相应的方法 用selector选择的方法一定要实现,否则会崩溃
  [ self performSelector : @selector (start) withObject : nil afterDelay : 5 ];

你可能感兴趣的:(Objective—C)