Reloading table view header or footer

2013-08-06 Thread Rick Mann
I've been struggling with updating the content of a table view footer. I ended up creating a custom view that I hang on to, returning that from the delegate method, and then changing its content. But I'm looking at the Personal Hotspot UI in Settings, and I see that the section footer changes

Re: Reloading table view header or footer

2013-08-06 Thread Alex Zavatone
Have you tried any of these? reloadSections:withRowAnimation reloadRowsAtIndexPaths, perhaps? Or reloadSectionIndexTitles? Set an observer to the data record that is being used to populate that cell, then create a little method in your TV class that is triggered when that data value changes.

Re: Reloading table view header or footer

2013-08-06 Thread Rick Mann
On Aug 6, 2013, at 14:24 , Alex Zavatone z...@mac.com wrote: reloadSections:withRowAnimation reloadRowsAtIndexPaths, perhaps? Or reloadSectionIndexTitles? Set an observer to the data record that is being used to populate that cell, then create a little method in your TV class that is