iOS Programming (bilingual edition)-View

Source: Internet
Author: User

1. What is a view?

The view is displayed as a rectangular area on the phone, which is a subclass of UIView or UIView.

Views can be either generated from Xib or generated in code.

2. Windows

A window is a uiwindow or a subclass of it.

The top level of the view structure is the app's window.

The window must be filled with the screen of the device, so the frame of the window must be set to the bounds of the screen.

(I'll explain the difference between frame and bounds later)

The code is as follows:

Objective-c

uiwindow* w = [[UIWindow alloc] initwithframe:[[uiscreen mainscreen] bounds]];

Swift (IOS 8)

Let w = UIWindow (Frame:UIScreen.mainScreen (). Bounds)

IOS9 after the code is significantly simplified, the system will default to the screen bounds assigned to the window frame

Swift (IOS 9)

Let w = UIWindow ()

iOS Programming (bilingual edition)-View

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.