Open ghost opened 9 years ago
Hi nporter19 , Do you got solution for this issue? if yes mean please help me to resolve this. Thanks in advance!
You need to add action handler in - viewDidAppear
method (or after), as you can get correct scroll view contentInset
then. In - viewDidLoad
, your scroll view has not set the final contentInset
after in iOS7 or later, typically all zeros.
- addPullToRefreshWithActionHandler
method record current scrollview contentInset
as originalTopInset
, originalBottomInset
, and reset to that contentInset after - stopAnimating
.
BUG: TableView section headers hide behind the Navigation bar in iOS 7 #181 @skmohanraj @nporter19
@liruqi Thanks, man. It did the trick!
When I add this code to my viewDidLoad
And I add this code to my viewDidAppear [_packgeTableView triggerPullToRefresh];
My top cell of my table view is cut off, is there any known solution to this?