gpt4 book ai didi

iphone - 在 iPhone 中以 POPUP 方式查看

转载 作者:行者123 更新时间:2023-11-28 22:43:53 26 4
gpt4 key购买 nike

我需要将一个 View (我们称之为 subview )显示为其他 View (我们称之为父 View )的弹出窗口。 subview 将包含图像、标签和一个按钮(关闭 subview )。我在谷歌上搜索了大约一个小时左右,但我并不真正了解如何开始这项任务。请帮助我解决问题的方法和解决方案。

最佳答案

试试这个代码。它会在你的主视图中添加一个 subview 和一个动画:

       //if you want to set your child view frame to your parent view frame.use this
self.childview.frame = self.view.frame;
//if not
self.childview.frame = CGRectMake(10,10,100,100);//ur own frame positon
self.childview.alpha = 0.0f;
[self.view addSubview:self.childview];

[UIView animateWithDuration:0.5 delay:0.0 options:UIViewAnimationCurveEaseOut
animations:^{
self.childview.alpha = 1.0f;
}
completion:^(BOOL finished) {
}];


///After this..if you want to remove it.

[self.childview removeFromSuperview];

希望对您有所帮助。

关于iphone - 在 iPhone 中以 POPUP 方式查看,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13761853/

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