博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS开发:视图生命周期
阅读量:6463 次
发布时间:2019-06-23

本文共 1316 字,大约阅读时间需要 4 分钟。

 

iOS应用的视图状态分为以下几种

  • 在viewcontroller的父类UIViewController中可以看到如下代码,通过重写不同的方法对操作视图渲染。
@available(iOS 2.0, *)public class UIViewController{    public func viewDidLoad() // Called after the view has been loaded. For view controllers created in code, this is after -loadView. For view controllers unarchived from a nib, this is after the view is set.   public func viewWillAppear(animated: Bool) // Called when the view is about to made visible. Default does nothing    public func viewDidAppear(animated: Bool) // Called when the view has been fully transitioned onto the screen. Default does nothing    public func viewWillDisappear(animated: Bool) // Called when the view is dismissed, covered or otherwise hidden. Default does nothing    public func viewDidDisappear(animated: Bool) // Called after the view was dismissed, covered or otherwise hidden. Default does nothingpublic func didReceiveMemoryWarning() // Called when the parent application receives a memory warning. On iOS 6.0 it will no longer clear the view by default. }
    • viewDidLoad():视图被加载到内存中时调用viewDidLoad方法,在该方法中可对视图上布局进行调整
    • viewWillAppear():视图可见前
    • viewDidAppear():视图已经可见,页面渲染完成后可以加载一些控件动画
    • viewWillDisappear():视图失去焦点前
    • viewWillDidDisappear():视图失去焦点后
    • didReceiveMemoryWarning():在iOS 6之后可使用此方法释放内存,包括视图控制器中的一些成员变量

 

转载于:https://www.cnblogs.com/tonge/p/4959390.html

你可能感兴趣的文章
CSS3常见问题:100vh在移动浏览器中不是固定的,恒定的
查看>>
基于react的滑动图片验证码组件
查看>>
用户认证系统
查看>>
iOS快速清除全部的消息推送
查看>>
ecshop二次开发攻略
查看>>
【算法学习笔记】贪心算法
查看>>
java单例模式深度解析
查看>>
什么是堆、栈?
查看>>
记录一次axios的封装
查看>>
【学习笔记】阿里云Centos7.4下配置Nginx
查看>>
VuePress手把手一小時快速踩坑
查看>>
dnsmasq安装使用和体验
查看>>
springmvc源码解读1--关于源码解读与博客的书写
查看>>
学习constructor和instanceof的区别
查看>>
用docker容器来制作nginx镜像
查看>>
关于分布式系统
查看>>
枚举类
查看>>
封装之--JAVA中的访问修饰符(区别于.NET)
查看>>
PyQt5综合实践—TCP服务器
查看>>
斐波那契数列 Java 不同的实现方法所需要的时间比较
查看>>