class ViewController
A class that’s used to render a view referenced by a property.
class ViewController;
Notes
- Objects of this type are created by the app.render() method, and used internally (e.g. by UIShowView) to keep track of rendering state asynchronously.
Instance members
renderer
The relevant render context for this controller.callback
The current render callback, if any.lastView
The view object that was rendered last, if any.lastRenderOutput
The output that was rendered last, if any.isRendered()
Returns true if the render method has never been called.render()
Renders the provided view using a new callback, or previously stored callback.removeAsync()
Removes previously rendered output, asynchronously.
Related
class RenderContext abstract
An abstract class that supports global view rendering, part of the global application context.
