gpt4 book ai didi

iphone - 如何将 UIView 隐藏和显示(动画)为 UIActionSheet?

转载 作者:可可西里 更新时间:2023-11-01 06:20:53 24 4
gpt4 key购买 nike

我是iOS开发新手,请关注我的问题。

正如我的标题所说,

如何将 UIView(带动画)隐藏和显示为 UIActionSheet
在谷歌搜索,bud没有找到有效的解决方案..

注意: i found following line but its not help me.

最佳答案

试试下面的代码:

- (IBAction)showTapped:(id)sender {
hideButton.enabled=YES;
showButton.enabled=NO;
[UIView animateWithDuration:.5 animations:^{
subView.frame=CGRectMake(0, 225, subView.frame.size.width, subView.frame.size.height);
}];
}

- (IBAction)hideTapped:(id)sender {
hideButton.enabled=NO;
showButton.enabled=YES;
[UIView animateWithDuration:.5 animations:^{
subView.frame=CGRectMake(0, 480, subView.frame.size.width, subView.frame.size.height);
}];
}

关于iphone - 如何将 UIView 隐藏和显示(动画)为 UIActionSheet?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17017299/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com