I have a UITableView that is using a custom table cell and each cell has a UIWebView.
Because UIWebView took along time to load, i want to avoid reloading them at al
I wanted to updated the cell height for section 5 and following code worked for me:
UiView.setAnimationsEnabled(False)
self.productTableView.reloadSections(NSIndexSet(index: SectionType.ProductDescription.hashValue), withRowAnimation: UITableViewRowAnimation.None)
self.productTableView.scrollToRowAtIndexPath(NSIndexPath(forRow: 0, inSection: 5), atScrollPosition: UITableViewScrollPosition.Bottom, animated: false)
UIView.setAnimationsEnabled(true)