iPhone效果评论框

发布于 2024-10-09 23:59:58 字数 297 浏览 5 评论 0原文

我刚刚使用过 Instagram 应用程序。我喜欢点击评论时的效果。 当您单击“评论”时,您将看到插入评论文本的淡入视图。 我怎样才能实现这样的事情?

这里有两个屏幕截图:

alt text

替代文字

替代文字

I've just used Instagram application. I like the effect when I click on comment.
When you click "comment" you'll see a fade in view for insert the comment text.
How can I implement something like this?

Here two screenshot's:

alt text

alt text

alt text

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月寒剑心 2024-10-16 23:59:58

设置 UIAnimation。以视图的 alpha 为 0 开始动画,然后以该视图的 alpha 为 1 结束动画,并提交动画。瞧,你的视野会逐渐消失。

这很容易。创建您的视图。当用户单击按钮时,将该视图的 alpha 设置为 0 并将大小设置为小于最终大小等。

假设您的视图名为 myView。你会写:

myView.alpha = 0;

myView.frame = CGRectMake(50, 50, 100, 100);

[self.view addSubVew: myView];

[UIView beginAnimations:@"View Fade" context:nil];

[UIView setAnimationDuration: .25];

[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];

然后将 alpha 设置为 1 并增加视图的大小

myView.alpha = 1

myView.frame = CGRectMake(25, 25, 200, 200);

然后你提交动画

[UIView 提交动画];

是这样的,我是凭空写下来的,所以我对任何语法错误或任何错误表示歉意。但这几乎就是它的完成方式。

Set a UIAnimation. Start the animation with the alpha of the view at 0, and then end the animation with the alpha of that view to 1, and commit the animation. And voila, you have a view that fades in.

It's easy. Create your view. When the user clicks the button, set the alpha of that view to 0 and set the size to smaller than your final size, etc.

lets say your view is called myView. you'd write:

myView.alpha = 0;

myView.frame = CGRectMake(50, 50, 100, 100);

[self.view addSubVew: myView];

[UIView beginAnimations:@"View Fade" context:nil];

[UIView setAnimationDuration: .25];

[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];

and then you set the alpha to 1 and increase the size of the view

myView.alpha = 1

myView.frame = CGRectMake(25, 25, 200, 200);

and then you commit the animations

[UIView commitAnimations];

It's something like that, i wrote it off the top of my head so I apologize for any syntax errors or anything. But that's pretty much how it's done.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文