Guest User

Untitled

a guest
Apr 24th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. import Cocoa
  2.  
  3. class MyConstraintLayoutManager: CAConstraintLayoutManager {
  4.  
  5. var isImplicitAnimationsDisabled: Bool = true
  6.  
  7. override func layoutSublayers(of layer: CALayer) {
  8. // サブレイヤーのレイアウト時の暗黙アニメーションを無効化
  9. CATransaction.begin()
  10. CATransaction.setDisableActions(self.isImplicitAnimationsDisabled)
  11.  
  12. super.layoutSublayers(of: layer)
  13.  
  14. CATransaction.commit()
  15. }
  16.  
  17. }
Add Comment
Please, Sign In to add comment