I have an app with 3 sections, each with a footer. I've established this through viewForFooterInSection, and set the height for each using heightForFooterInSection.
These footers are not fixed size, as they change height based on certain things. When the height changes, it's a quite choppy animation. Rather than showing the height change, it just jumps from the old height to the new height.
if (condition == YES) {
return 45;
}
else {
return 70;
}
Is there a way to animate this height change to provide a more smooth experience? Thanks!