We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
When I use this
[m_tableView beginUpdates]; [m_tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:m_indexPath] withRowAnimation:UITableViewRowAnimationFade]; [m_tableView endUpdates];
and
[m_tableView beginUpdates]; [m_tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:m_indexPath] withRowAnimation:UITableViewRowAnimationFade]; [m_tableView endUpdates];
tableView jumps, it happens because of this
m_tableView.estimatedRowHeight = 97.0; m_tableView.rowHeight = UITableViewAutomaticDimension;
But then if we remove this, then we will not variable height.
So guys please help me out..
Here is my SO question for same
http://stackoverflow.com/questions/29079485/reloadrowsatindexpath-weird-behaviour-for-uitableview
Regards Ranjit
The text was updated successfully, but these errors were encountered:
Hi Ranjit,
This is almost certainly the same issue as #17. Please take a look at that thread for further information.
Sorry, something went wrong.
Hello smileyborg, So there is no solution for this?
As discussed in #17, this is an Apple bug, with no known workaround.
No branches or pull requests
Hello,
When I use this
[m_tableView beginUpdates];
[m_tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:m_indexPath] withRowAnimation:UITableViewRowAnimationFade];
[m_tableView endUpdates];
and
[m_tableView beginUpdates];
[m_tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:m_indexPath] withRowAnimation:UITableViewRowAnimationFade];
[m_tableView endUpdates];
tableView jumps, it happens because of this
m_tableView.estimatedRowHeight = 97.0;
m_tableView.rowHeight = UITableViewAutomaticDimension;
But then if we remove this, then we will not variable height.
So guys please help me out..
Here is my SO question for same
http://stackoverflow.com/questions/29079485/reloadrowsatindexpath-weird-behaviour-for-uitableview
Regards
Ranjit
The text was updated successfully, but these errors were encountered: