You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 7, 2018. It is now read-only.
Layer's view is a special UIView subclass which has some additional features—most notably, key parts of the touchBeganHandler implementation. As a consequence, touch handling doesn't work on e.g. text layers, video layers, etc.
The Layer subclasses all use their own view subclasses. There's no multiple inheritance, so we'll need to use composition instead (i.e. make those custom views be a subview of Layer's special view), not be the layer's view.
Layer
's view is a specialUIView
subclass which has some additional features—most notably, key parts of thetouchBeganHandler
implementation. As a consequence, touch handling doesn't work on e.g. text layers, video layers, etc.The
Layer
subclasses all use their own view subclasses. There's no multiple inheritance, so we'll need to use composition instead (i.e. make those custom views be a subview ofLayer
's special view), not be the layer's view./cc @jbrennan
The text was updated successfully, but these errors were encountered: