Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 TableViewCell 中有一些 CALayers,当我触摸图层并开始拖动时,我发现,我无法拖动表格。
我必须使用 UIView 而不是 CALayer 吗?
有什么建议吗?
CALayer 不是 UIResponder 的子类,因此它们无法处理任何触摸。请改用 UIView。