Skip to content

waggledans/UIKitCatalog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

UIKit Catalog (iOS): Creating and Customizing UIKit Controls

This sample demonstrates how to use many views and controls in the UIKit framework along with their assorted functionalities. Refer to this sample if you are looking for specific controls or views that are provided by the system.

Note that this sample also shows you how to make your non-standard views (images or custom views) accessible. Using the iOS Accessibility API enhances the user experience of VoiceOver users.

You will also notice this sample shows how to localize string content by using the NSLocalizedString function. Each language has a "Localizeable.strings" file and this function refers to this file when loading the strings from the default bundle.

Build Requirements

Xcode 7.3 and iOS 9.3 SDK or later

Runtime Requirements

iOS 9.3 or later

Using the Sample

This sample can be run on a device or on the simulator.

While looking over the source code of this sample you will find that many elements keep the same order of the view controller classes listed in the project. For example, the activity indicator view controller is the first view controller in the UIKitCatalog project folder, but it is also the first view controller that's shown in the primary view controller's table view.

This sample uses a split view controller based application architecture, which can be seen in the storyboard files. The primary view controller defines the list of views that are used for demonstration in this application. Each secondary view controller corresponds to a given system-provided control (and is named accordingly). For example, the alert controller view controller shows how to use UIAlertController and its associated functionality. The only two exceptions to this rule are UISearchBar / UISearchController and UIToolbar; these APIs have multiple view controllers to explain how the control works and can be customized.

To demonstrate how you can manage the complexity of your storyboards, the search view controllers are hosted in a separate storyboard. This storyboard is linked to from the main storyboard via an external storyboard reference.

UIKit Controls That Are Covered

This sample demonstrates how to configure and customize the following controls / controllers:

  • UIActivityIndicatorView
  • UIAlertController
  • UIButton
  • UIDatePicker
  • UIImageView
  • UIPageControl
  • UIPickerView
  • UIProgressView
  • UISearchBar
  • UISearchController
  • UISegmentedControl
  • UISlider
  • UIStackView
  • UIStepper
  • UISwitch
  • UITextField
  • UITextView
  • UIToolbar
  • UIWebView

Copyright (C) 2016 Apple Inc. All rights reserved.

About

Basic apple sample code

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages