//初始化imageview
UIImageView *imageview=[[UIImageView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
//设置背景颜色
imageview.backgroundColor=[UIColor clearColor];
//设置透明度
imageview.alpha=1;
//设置是否隐藏
imageview.hidden=NO;
//设置图片
imageview.image=[UIImage imageNamed:@"1.png"];
//设置高亮图片
imageview.highlightedImage=[UIImage imageNamed:@"2.png"];
//是否高亮
imageview.highlighted=NO;
//设置是否与用户交互
imageview.userInteractionEnabled=NO;
//添加到window视图
[self.window addSubview:imageview];
时间: 2024-10-07 05:30:17