I want to reload viewForHeaderInSection in case of custom cell in viewForHeaderInSection to reload particular viewForHeaderInSection IOS.
I have used followi
You can try something like this:
UIView *headerVw = [YOURTABLEVIEW headerViewForSection:section]; [headerVw setNeedsDisplay]; [headerVw setNeedsLayout];
Note:
Hope it will work for you.