Objective-C iOS Development for Legacy & Enterprise Apps · Pelajaran

UIView dan UIViewController

Pahami siklus hidup dan tanggung jawab UIView serta UIViewController sebagai blok pembangun antarmuka iOS.

Pelajaran 1 dari 411 langkah

UIView dan UIViewController adalah pelajaran Objective-C iOS Development for Legacy & Enterprise Apps gratis di CoddyKit. Ini adalah pelajaran 1 dari 4. Kamu bisa membaca pelajaran lengkapnya di bawah secara gratis — lalu praktikkan langsung di browser dengan editor kode bawaan dan tutor AI 24/7. Ini adalah bagian dari jalur belajar Objective-C iOS Development for Legacy & Enterprise Apps, dan progresmu tersinkronisasi di web dan aplikasi CoddyKit. Kursus Objective-C iOS Development for Legacy & Enterprise Apps mencakup 4 pelajaran total.

Bagian dari pelajaran ini belum diterjemahkan dan ditampilkan dalam bahasa Inggris.

Introduction to iOS UI

Welcome to building iOS interfaces! Every visual element you see in an iOS app, from buttons to entire screens, is built using two core components: UIView and UIViewController.

These are the fundamental building blocks that allow you to display content and manage user interactions in your Objective-C applications.

What is a UIView?

A UIView is the basic rectangular region that draws content and handles events on the screen. Think of it as a canvas where you can draw shapes, display text, or show images.

  • It's the base class for all visual elements.
  • It defines the content's position, size, and appearance.
  • It can contain other views, creating a view hierarchy.

Basic UIView Properties

UIViews have important properties that control their appearance and layout. Here are a few common ones:

  • frame: Defines the view's size and position relative to its superview.
  • bounds: Defines the view's size and position relative to its own coordinate system.
  • backgroundColor: Sets the view's background color.
  • alpha: Controls the view's transparency (0.0 is fully transparent, 1.0 is fully opaque).

Creating a UIView

You can create and configure a UIView programmatically. Here's how you might set up a simple red square view:

// In an Objective-C file (e.g., within a method)
CGRect viewFrame = CGRectMake(50, 50, 100, 100);
UIView *myView = [[UIView alloc] initWithFrame:viewFrame];
myView.backgroundColor = [UIColor redColor];
myView.alpha = 0.7;
// myView is now ready to be added to another view

What is a UIViewController?

A UIViewController is a crucial component that manages a hierarchy of views (often just one main view) and coordinates the flow of information between the views and your app's data model.

It acts as the brain for a specific screen or section of your app, handling user input, updating the view, and responding to system events.

UIViewController's Main View

Every UIViewController has a primary view property, which is an instance of UIView. This view acts as the root of the view hierarchy that the view controller manages.

You typically add all other UI elements (like buttons, labels, etc.) as subviews to this main view.

The `viewDidLoad` Lifecycle Method

UIViewControllers have a lifecycle with methods that are called at different stages. One of the most important is viewDidLoad.

  • It's called once after the controller's view has been loaded into memory.
  • This is the perfect place to perform initial setup for your views, like adding subviews, setting up constraints, or loading initial data.
  • It's called only once during the lifetime of the view controller.

Implementing `viewDidLoad`

Here's how you might override viewDidLoad in your custom view controller to add some initial UI setup:

// MyViewController.m
#import "MyViewController.h"

@implementation MyViewController

- (void)viewDidLoad {
    [super viewDidLoad]; // Always call super!
    
    self.view.backgroundColor = [UIColor lightGrayColor];
    
    UILabel *welcomeLabel = [[UILabel alloc] initWithFrame:CGRectMake(20, 100, 280, 40)];
    welcomeLabel.text = @"Hello from MyViewController!";
    welcomeLabel.textAlignment = NSTextAlignmentCenter;
    [self.view addSubview:welcomeLabel];
}

@end

`viewWillAppear` and `viewDidAppear`

Besides viewDidLoad, two other common lifecycle methods relate to a view appearing on screen:

  • viewWillAppear:: Called just before the view controller's view is added to the view hierarchy and about to be displayed. Good for updating UI that might change frequently.
  • viewDidAppear:: Called after the view controller's view has been fully presented on screen. Good for starting animations or fetching data that requires the view to be visible.

Quick Check: UI Components

Which of the following statements best describes the primary responsibility of a UIViewController?

Recap: UIView & UIViewController

You've learned about the fundamental building blocks of iOS user interfaces!

  • UIView is the basic rectangular area for drawing and event handling.
  • UIViewController manages a view hierarchy and coordinates the interaction between views and data.
  • The view property of a UIViewController is the root of its managed UI.
  • Lifecycle methods like viewDidLoad, viewWillAppear, and viewDidAppear are key for setting up and updating your UI at different stages.

Next, we'll explore common UI controls and how to handle user events!

Gratis untuk memulai

Belajar Objective-C dengan tutor AI — gratis

Tulis dan jalankan kode asli di browser kamu, dapatkan bantuan instan dari tutor AI 24/7, dan lanjutkan di mana kamu tinggalkan di web atau aplikasi.

Kursus
12
Pelajaran
48

Pertanyaan yang Sering Diajukan

Apakah pelajaran “UIView dan UIViewController” gratis?

Ya — teks lengkap “UIView dan UIViewController” gratis dibaca di sini di web. Untuk praktiknya secara interaktif (editor kode bawaan dan tutor AI 24/7) dan buka sisa kursus Objective-C iOS Development for Legacy & Enterprise Apps, upgrade ke CoddyKit PRO. Kursus Objective-C iOS Development for Legacy & Enterprise Apps mencakup 4 pelajaran total.

Apa yang akan aku pelajari di “UIView dan UIViewController”?

Pahami siklus hidup dan tanggung jawab UIView serta UIViewController sebagai blok pembangun antarmuka iOS. Kamu berlatih Objective-C iOS Development for Legacy & Enterprise Apps dengan kode praktik yang langsung kamu jalankan di browser, dan tutor AI 24/7 menjawab pertanyaanmu saat kamu mengerjakan pelajaran ini.

Apakah aku perlu pengalaman untuk memulai Objective-C iOS Development for Legacy & Enterprise Apps?

Tidak diperlukan pengalaman sebelumnya. Objective-C iOS Development for Legacy & Enterprise Apps di CoddyKit dirancang untuk pemula hingga pelajar tingkat lanjut, jadi kamu bisa memulai di sini atau dari awal dan belajar sesuai kecepatan kamu sendiri. Ini adalah pelajaran 1 dari 4.

Berapa lama pelajaran “UIView dan UIViewController” memakan waktu?

Sebagian besar pelajaran CoddyKit memakan waktu sekitar 5–10 menit. Setiap pelajaran ringkas dan interaktif, jadi kamu membuat kemajuan stabil dan melanjutkan dari tempat kamu tinggalkan di web dan aplikasi.

Bisakah aku menulis dan menjalankan kode dalam pelajaran Objective-C iOS Development for Legacy & Enterprise Apps ini?

Ya. Setiap pelajaran Objective-C iOS Development for Legacy & Enterprise Apps menyertakan editor kode bawaan, jadi kamu menulis dan menjalankan kode nyata langsung di browser dan mendapatkan umpan balik AI instan — tidak diperlukan penyiapan lokal.

Semua pelajaran dalam kursus ini

  1. UIView dan UIViewController
  2. Kontrol dan Peristiwa UI Umum
  3. Tampilan Tabel dan Tampilan Koleksi
  4. Auto Layout dengan NSLayoutConstraint
← Kembali ke Objective-C iOS Development for Legacy & Enterprise Apps