1. 程式人生 > >iOS-學習UIKIt框架的重要性

iOS-學習UIKIt框架的重要性

dep 好的 普通用戶 無法 obj nav ctu with 通過

   前言:

  眾所周知,我們的移動設備的屏幕上可以展示很多圖形界面,作為用戶的我們可以通過屏幕上的圖形界面瀏覽信息,也可以通過與圖形界面的簡單交互,在移動設備上實現各種各樣的功能操作.....可以說,沒有圖形界面,普通用戶基本上無法操作移動設備,可見移動設備的圖形界面多麽重要。它到底有多重要?可以用業界流行的一句話來描述:UIKit框架都學不好的開發者,就不要說自己是做移動開發的了!!!

  關於UIKit框架的重要性,官網也做出了相關描述:

   The UIKit framework provides the core objects that you need to build apps for iOS and tvOS. You use these objects to display your content onscreen, to interact with that content, and to manage interactions with the system. Apps rely on UIKit for their basic behavior, and UIKit provides many ways for you to customize that behavior to match your specific needs.

好了,回到正題。接下來讓我們一起來探索、學習UIKit框架

  •   App Stucture
  •   User Interface
    •   View and Controls
    •   View Controllers
      •   Custom View Controllers
        •   UIViewController
        • UITableViewController
        • UICollectionController
        • UIContcontainer
      • Navigation Interface
        •   UINavigationController
        • UINavigationBar
        • UINavigationItem
      • TabView Interface
        •   UITabbarController
        • UITabbar
        • UITabbarItem
      • Images and Video
        •   UIImagePickerController
        • UIVideoEditorController
  • User Interations
  • Graphics ,Drawing And Printing
  • Text
  •   Deprecated

iOS-學習UIKIt框架的重要性