This repository was archived by the owner on Jun 8, 2023. It is now read-only.

Description
I disagree with the default setting of returning YES from requiresConstraintBasedLayout.
The method layout is called only under auto layout on 10.7, whereas on 10.8 layout is called either because auto layout is enabled, or because the view is layer-backed. As a result, apps that need to use layout-based drawing code on 10.8 yet still don't want to use auto layout are left in a bind if they want to use RBLView.
If one single view touches any part of auto layout, the whole window will fall victim to the lag that auto layout can induce, especially on table views.
What can be done about this?