Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在主屏幕顶部创建一个隐藏页面(如 iOS 6 新闻提要),并在右上角创建一个按钮。当人们推它或按住它并向下滑动时,就会出现隐藏的菜单。老实说,我对此一无所知。
如果您想拥有更复杂的事件,而不仅仅是点击按钮,您应该考虑使用UIGestureRecognizer. 对于您所描述的交互类型,您可能需要 2 个识别器 -UILongPressGestureRecognizer用于点击并按住,然后UIPanGestureRecognizer用于向下滑动。您可能可以使用 aUISwipeGestureRecognizer而不是 pan,但我不确定是否需要从长按独立轻按开始滑动。
UIGestureRecognizer
UILongPressGestureRecognizer
UIPanGestureRecognizer
UISwipeGestureRecognizer
学习手势的好资源是: