objective-c – 如何在Cocoa程序中的窗口中滑出视图

objective-c – 如何在Cocoa程序中的窗口中滑出视图,第1张

概述我想在窗口上看到一个视图,并响应一个消息(按钮单击或菜单),我想让另一个视图向下滑动,并且第一个视图调整大小. 我想从这里走: *********************************** **--------------------------------**| 我想在窗口上看到一个视图,并响应一个消息(按钮单击或菜单),我想让另一个视图向下滑动,并且第一个视图调整大小.

我想从这里走:

***********************************                                **--------------------------------**|                              |**|        vIEw 1                |**|                              |**--------------------------------**                                ***********************************

到这个:

***********************************                                **--------------------------------**|        vIEw 2                |**--------------------------------**--------------------------------**|        vIEw 1                |**--------------------------------**                                ***********************************

我不一定在寻找代码,一个想法从哪里开始将不胜感激.

这是一个桌面应用程序.

解决方法 CoreAnimation绝对是你最好的选择.自从我使用任何CA代码以来,已经有一段时间了,但是像:

[UIVIEw beginAnimations:@"slIDeOn" context:nil];firstVIEw.frame = shrunkFirstVIEwRect; // The rect defining the first vIEw's smaller frame. This should resize the first vIEwsecondVIEw.frame = secondVIEwOnScreenFrame; // This should move the second vIEw on the frame. [UIVIEw commitAnimations];

之后,您可以使用以下方式返回单个视图:

[UIVIEw beginAnimations:@"slIDeOff" context:nil];firstVIEw.frame = normalFirstVIEwRect; // The rect defining the first vIEw's normal frame. This should expand the first vIEw.secondVIEw.frame = secondVIEwOffScreenFrame; // Move the second vIEw off the screen[UIVIEw commitAnimations];

编辑:上面的代码是为iPhone,我读了你的问题有点快.

在Mac上,您可以使用(同样):

[NSAnimationContext beginGrouPing];[[NSAnimationContext currentContext] setDuration:1.0f]; // However long you want the slIDe to take[[firstVIEw animator] setFrame:shrunkFirstVIEwRect];[[secondVIEw animator] setFrame:secondVIEwOnScreenFrame];[NSAnimationContext endGrouPing];
总结

以上是内存溢出为你收集整理的objective-c – 如何在Cocoa程序中的窗口中滑出视图全部内容,希望文章能够帮你解决objective-c – 如何在Cocoa程序中的窗口中滑出视图所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1026914.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存