English 中文(简体)
iPad/iPhone的幻灯片外板是否有控制器?
原标题:On iOS and Cocoa Touch, is there a control for a slide out panel for iPad / iPhone?

这可能是一个常见的 UI, 当我们点击 < code> i 图标时, 滑动面板会从底部或屏幕右侧滑出, 有点像愤怒的鸟类如何从左侧滑出面板 。

可可触摸公司是否已经具备了类似在这种用途上可以轻易转换的控件或其它控制装置的类似材料? 否则,是否有一些替代品可能符合这一目的,并在iPad / iPhone上普遍推荐?

最佳回答

基本上它只是显示一个按钮( 您的图标) 被点击时的视图( 一些面板), 使用动画将其从侧侧滑动 。 见 : < a href=\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\

问题回答

我有一个非常特别的实用案例要处理, ViewDeck非常合适。菜单模仿了Facebook 或 Path 上的菜单。 它的动画很顺利, 并有着巨大的手势互动 :

https://github.com/Inferis/ViewDeck" rel=“no follow'>https://github.com/Inferis/ViewDeck

我一直在使用

"https://github.com/mutualmobile/MMDDrawer Conserence" rel=“不跟随” >MMDLawer Conserence

在iPad App I为一家国家保健公司建造的iPad App I 中, 侧边抽屉功能非常成功

处理可可/配置往往对第三方组成部分有些棘手,人们还需要铭记,随着新的iOS版本的推出,该组成部分是否将继续得到支持,但一般而言,这一组成部分以及iOS8和Id建议使用。





相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签