UIKit 大纲

UIKit中所有的继承关系

UIkit.jpg

重点关注的几个子类

UIBarItem的子类

UIBarButtonItem
UITabBarItem
UITabBarItem 是UITabBarController 上的角标
UIBarButtonItem 是UINavigationController 上的back,left,right 3个barButtonItem
UITabar 和 UINavigationBar 是控制器上 下面和上面的栏

屏幕快照 2019-06-10 下午4.02.17.png

UIResponder 的子类

UIApplication 及UIView ,UIViewController
这三个是UIKit中3个最重要的子类,需要单独展开


屏幕快照 2019-06-10 下午4.04.15.png

UIViewController 的子类

UIViewController总结
除了UIViewController本身外还有2个重要子类UITabBarController 及UINavigationController

屏幕快照 2019-06-10 下午4.06.31.png

UIView的子类

UIWindow,UILabel,UITabBar,UINavigationBar,UITableViewCell,UIScrollView,UIWebView


屏幕快照 2019-06-10 下午4.08.54.png

UIScrollView 的子类

UITableView,UICollectionView,UItextFlied
UICollectionView 也是继承自UIScrollView的

NS_CLASS_AVAILABLE_IOS(6_0) @interface UICollectionView : UIScrollView 

UIControl

UIButtion ,UITextField 2个最常用的UIControl 子类


UIControl.png

本章只为了列出UIKit 中最常见的也是最基本的类。学习和复习的时候不能一下学完,需要有重点的学。比如掌握了UIButton 和 UITextField ,别的子类看一下官方文档就解决了。

你可能感兴趣的:(UIKit 大纲)