Is there a way to manually animate the show/hide?
My scenario is the JVFloatLabeledTextField is inside UITableViewCell and somehow every time the text field state change from empty to non-empty or the other way around I want to animate the cell height (cell height is changed) So I use every time text field is changed.
But this call make the floating text animation non-existence.
[self.tableView beginUpdates];
[self.tableView endUpdates];
I know that this problem occur because the floating text animation is replaced by table view cell animation and I think adding some delay and calling show/hide manually for floating text may work but the lib does not expose the public method for that.
I don't know this is the correct way or not if you have any other suggestion please guide me.
Thanks.