How can I reload a TableView
using delegation from within my CustomTableViewCell
class?
Currently I'm doing it by calling this:
NSNotificationCenter.defaultCenter().postNotificationName(UIContentSizeCategoryDidChangeNotification, object: nil)
But I would like to do it through delegation so I can have more control over the animation and reload only that specific TableViewCell instead of the whole thing.
Any help is greatly appreciated :)