UIImageView 纯代码 布局·使用

2023-03-13  本文已影响0人  xq9527

前言

纯属笔记学习

效果图

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

最后总结:

记录今天都学习 每天进步一点好好学习 天天向上 。

上一篇下一篇

猜你喜欢

热点阅读