Guides and Sample Code

Developer

Playground Book Format Reference

PlaygroundLiveViewRepresentation Enumeration
PlaygroundLiveViewRepresentation列挙

An enumeration that describes the supported representations for live views in playgrounds.
ある列挙、それはプレイグラウンドの中のライブビューに対してサポートされる表現を記述します。

Enumeration Cases
Enumerationケース節

view

A view that is displayed as the live view.
ライブビューとして表示されるビュー。

Declaration
宣言

  1. case view(UIView)

Discussion
解説

The associated value is a UIView that is the root of a view hierarchy (it does not have a superview), and it is not owned by a view controller.
関連値はUIViewで、それはビュー階層のルート(それはスーパービューを持ちません)です、そしてそれはビューコントローラによって所有されません。

viewController

A view controller whose view is displayed as the live view.
ビューがそれのライブビューとして表示される、ビューコントローラ。

Declaration
宣言

  1. case viewController(UIViewController)

Discussion
解説

The associated value is a UIViewController that is the root of a view controller hierarchy (it does not have a parent view controller), and its view does not have a superview.
関連値はUIViewControllerで、それはビュー階層のルート(それはスーパービューを持ちません)です、そしてそれはビューコントローラによって所有されません。