前言
纯属笔记学习
效果图
image.png//
// ViewController.m
// UIImgaeview纯代码使用
//
// Created by xuqing on 2023/3/14.
//
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
UIImageView * iv=[[UIImageView alloc] init];
//UIimgaeview 表示一个图片对象
iv.image= [UIImage imageNamed:@"huoying"];
iv.frame=CGRectMake(50, 100, 300, 300);
[self.view addSubview: iv];
}
@end
最后总结:
记录今天都学习 每天进步一点好好学习 天天向上 。
网友评论