IOS版伪春菜开发笔记1.1之导入图片并显示
点击xcode界面左侧的project navigator(工程浏览器),选中"ViewController.swift"文件,如下图
这里需要解释一下,ViewController是类名,该类的类型申明为UIViewController,而UIViewController即为UI视图控制器,它提供了整个基于UIKit构建的视图基础。
我们先来导入一张图片,右键点击左侧的工程浏览器窗口,点击“add Files to Taromati”,在窗口中添加需要导入的图片,这里我导入了橘花伪春菜win7的shell。
下面就可以写代码了:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28 //
// ViewController.swift
// Taromaiti
//
// Created by fancyang on 2017/6/22.
// Copyright © 2017年 fancyang. All rights reserved.
//
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let img = UIImage(named:"win7/surface0022.png")//创建一个图像类
let imgView=UIImageView(image: img)//创建一个图像视图用作图像的容器
self.view.addSubview(imgView)//把图像视图添加到当前的根视图
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
最后点击左上角的编译并运行按钮,成功后可以看到模拟器的启动画面,随后进入测试的app就可以看到我们加载的图片了
嗨、骚年、快来消灭0回复。