gpt4 book ai didi

iphone Mail App Popup 样式 alertview

转载 作者:行者123 更新时间:2023-11-28 20:33:51 24 4
gpt4 key购买 nike

我觉得我有一个金发碧眼的时刻。当您单击编辑 -> 选择电子邮件 -> 而不是单击删除时,iPhone 邮件应用程序使用的控件是什么。弹出窗口显示“删除消息”或“取消”。

我只是想知道拥有“删除消息”和“取消”按钮的控件是什么?有什么想法吗?

提前致谢

最佳答案

您可以像这样实现自定义弹出窗口:

@implementation UIView(Animation)

-(void)animationElasticPopup {
self.transform = CGAffineTransformMakeScale(0.001f, 0.001f);

[UIView animateWithDuration:0.4 animations:^{
[UIView setAnimationDelay:0];
self.transform = CGAffineTransformMakeScale(1.1f, 1.1f);//1.1
self.alpha = 1.f;
} completion:^(BOOL finished) {
[UIView animateWithDuration:0.1 animations:^{
self.transform = CGAffineTransformMakeScale(0.9f, 0.9f);//0.9
} completion:^(BOOL finished) {
[UIView animateWithDuration:0.1 animations:^{
self.transform = CGAffineTransformMakeScale(1.f, 1.f);//1.0
} completion:^(BOOL finished) {
}];
}];
}];}





@end

关于iphone Mail App Popup 样式 alertview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11303968/

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