NJKScrollFullScreen icon indicating copy to clipboard operation
NJKScrollFullScreen copied to clipboard

Scroll to full screen like Facebook app

Results 10 NJKScrollFullScreen issues
Sort by recently updated
recently updated
newest added

Add this code to your viewController - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{ return 50; } - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{ UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 360, 50)]; view.backgroundColor = [UIColor...

Hi, your NJKScrollFullScreen is great!, I have spend months looking for a simplified lib to hide navBar & tabBar when scroll. it can be much simplified if add an automatic...

Hi, i try to use it on uitableview inside uiviewcontroller with auto layout it's didn't work any advice for this case please

My Problem is: I set contentInset of my scrollView instance and isOverBottomBoundary never become true. NJKScrollDirection currentScrollDirection = detectScrollDirection(currentOffsetY, _previousOffsetY); CGFloat topBoundary = -scrollView.contentInset.top; CGFloat bottomBoundary = scrollView.contentSize.height + scrollView.contentInset.bottom;...

When I add a view with Constraint upon toolbar,it cannot hide and show along with the toolbar;Can you give me some tips? Thanks!

If you try to log isOverBottomBoundary you can see that it is always false. It looks like bottomBoundary logic was wrong. The condition we actually need is scrollView.height - scrollViewContent.height...

![img_1122](https://cloud.githubusercontent.com/assets/5214134/4920774/e3b46fee-6504-11e4-9588-b9aadbe8d500.PNG) iOS SDK 8.1 iPhone 5

I use a custom font in my nav bar - `[[UINavigationBar appearance] setTitleTextAttributes:navTitleAttributes];`. The font seems to be reset to the default when the nav bar comes back.