0

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

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

提前致谢

4

3 回答 3

2

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

@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
于 2012-07-03T04:34:34.353 回答
1

UIActionSheetUIAlertView..我不确定您在说什么,但它必须是两者之一。

于 2012-07-03T03:14:30.413 回答
0

UIActionSheet是您要查找的类,显示一个非常简单,并且很像 UIAlertView。

UIActionSheet *confirmationSheet = [[UIActionSheet alloc] initWithTitle:@"Are you sure you want to cancel?" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"Delete" otherButtonTitles:@"Save Draft", nil]
[confirmationSheet showFromToolbar:self.myToolbar];
于 2012-07-03T03:21:12.050 回答