for button in buttonGroup {
UIView.animateWithDuration(1, animations: {
button.alpha = 0
})
}
UIView.animateWithDuration(1, animations: {
for button in buttonGroup {
button.alpha = 0
}
})
は、もっと後になる可能性があり、私は優れている方法だろうか? 標準はリソース消費量です。
IOSには新しく、それは時間予算プロジェクトです。後で間違いなくユニットテスト。あなたのグループボタンごとの単なるアドバイスに感謝しましょう。 – outcast