Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02fba65 commit 5f95f43Copy full SHA for 5f95f43
1 file changed
Examples/Messenger/Messenger-Shared/MessageViewController.m
@@ -228,6 +228,10 @@ - (void)didPressRightButton:(id)sender
228
229
[self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:scrollPosition animated:YES];
230
231
+ // Fixes the cell from blinking (because of the transform, when using translucent cells)
232
+ // See https://github.com/slackhq/SlackTextViewController/issues/94#issuecomment-69929927
233
+ [self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
234
+
235
[super didPressRightButton:sender];
236
}
237
0 commit comments