Home >Web Front-end >HTML Tutorial >iOS 页面控件:ADCustomPageControl_html/css_WEB-ITnose

iOS 页面控件:ADCustomPageControl_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-21 09:14:331288browse

JDFPeekaboo能够帮助实现在往下滚动列表的时候能够藏起navigation bar,这是一种很常用的需求,相信可以帮助很多同学。
it's very easy to use. Simply add a property for it:

@property (nonatomic, strong) JDFPeekabooCoordinator *scrollCoordinator;

Then, set it up (say, in-viewDidLoad):

self.scrollCoordinator = [[JDFPeekabooCoordinator alloc] init];self.scrollCoordinator.scrollView = self.scrollView;self.scrollCoordinator.topView = self.navigationController.navigationBar;self.scrollCoordinator.bottomView = self.navigationController.toolbar;



项目主页:http://www.open-open.com/lib/view/home/1429107357814

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn