- iOS Development with Xamarin Cookbook
- Dimitris Tavlikos
- 180字
- 2021-07-16 11:45:09
Introduction
So far, we have discussed views and how to use them. In most cases of real world app scenarios, views alone are not enough. Apple provides another base class, the UIViewController
class, which is responsible for managing views. A view controller can respond to device notifications, such as when the device rotates, or can provide different ways to display and dismiss multiple views or even other view controllers. There are a number of view controllers available for us to use. In this chapter, we will discuss the most important ones.
These view controllers are as follows:
- UIViewController: This is the base class of all view controllers.
- UINavigationController: This is the view controller that provides various ways of navigating through different view controllers.
- UITabBarController: This is a view controller that displays multiple view controllers in a tab-like interface.
- iPad-specific view controllers: These are the view controllers that only apply to the iPad device.
Furthermore, we will learn how to create our own custom view controllers, and we will create an app whose user interface will be created with storyboard files.
推薦閱讀
- Moodle Administration Essentials
- Magento 2 Theme Design(Second Edition)
- Mastering Python Scripting for System Administrators
- Mastering Yii
- Learning Network Forensics
- Drupal 8 Module Development
- 小型編譯器設計實踐
- 大話Java:程序設計從入門到精通
- 深入淺出Python數據分析
- INSTANT JQuery Flot Visual Data Analysis
- Visual Basic程序設計基礎
- Microsoft Exchange Server 2016 PowerShell Cookbook(Fourth Edition)
- 高性能PHP 7
- Learning D3.js 5 Mapping(Second Edition)
- C/C++代碼調試的藝術