2016-03-31 6 views
-2

enter image description here enter image description hereフローティングボタンは、アニメーションが別のスレッドで動作するため、あなたがメインキュー内のテーブルビューのリロードメソッドを呼び出す必要がありますテーブルをリロード

_setupAnimationWithDuration:delay:view:options:factory:animations:start:animationStateGenerator:completion: 
    UIKit`+[UIView(UIViewAnimationWithBlocks) _setupAnimationWithDuration:delay:view:options:factory:animations:start:animationStateGenerator:completion:]: 

答えて

2

を呼び出すiOSアプリで非表示にしていません。これはあなたの問題を解決した場合

dispatch_async(dispatch_get_main_queue(), ^{ 
     [_menuTable reloadData]; 
    }); 
+0

Plzをマークして、あなたのコード

[_menuTable reloadData]; 

を交換するには、右のように答えます。 –

関連する問題