Skip to content

Latest commit

 

History

History
executable file
·
29 lines (22 loc) · 1.13 KB

File metadata and controls

executable file
·
29 lines (22 loc) · 1.13 KB
title Layer Backing
layout docs
permalink /docs/layer-backing.html
prevPage accessibility.html
nextPage subtree-rasterization.html

In some cases, you can substantially improve your app's performance by using layers instead of views. We recommend enabling layer-backing in any custom node that doesn't need touch handling.

With UIKit, manually converting view-based code to layers is laborious due to the difference in APIs. Worse, if at some point you need to enable touch handling or other view-specific functionality, you have to manually convert everything back (and risk regressions!).

With all AsyncDisplayKit nodes, converting an entire subtree from views to layers is as simple as:

SwiftObjective-C
rootNode.layerBacked = YES;
rootNode.layerBacked = true

...and if you need to go back, it's as simple as deleting one line.