2017-04-21 6 views
0

CAKeyframeAnimationはこれを好きではない:私たちはoptions:UIViewAnimationOptionAllowUserInteractionを設定することはできませんアニメーションの期間中にCAKeyframeAnimationをユーザーが操作する方法を教えてください。

[UIView animateWithDuration:0.0 delay:0.0 options:UIViewAnimationOptionAllowUserInteraction animations:^{ 
    .. 
} completion:nil]; 

。アニメーションの期間中、誰かがそれをインタラクティブにする良いアイデアはありますか?

答えて

0

アニメーション中にフレームを更新するタイマー設定の問題を解決しました。

//Timer: To update the UI frame 
Timer.scheduledTimer(timeInterval: 0.15, target: self, selector: #selector(updateFrame), userInfo: nil, repeats: true) 

//Timer Selector 
@objc func updateFrame(){ 
    //getting the layer presentation bounds 
    let layer = "button, label...".layer.presentation()! 

    let point = CGPoint(x: layer.frame.origin.x, y: layer.frame.origin.y) 
    let size = CGSize(width: layer.frame.width, height: layer.frame.height) 
    // Update the UI element frame location 
    "ui element".frame = CGRect(origin: point, size: size) 
} 
関連する問題