0

我创建了一个自定义子类 uiview 来显示应用内通知。我可以很好地调用视图,但是在使用 uibutton (嵌入在自定义视图中)解除它时遇到问题

按下按钮时,应用程序崩溃,我收到此错误:

更新 - 修复了上述问题,但现在只有按钮消失,而不是实际视图。请参阅下面的更新代码。

-(id)initWithMessage:(NSString *)message{
    self = [super initWithFrame:CGRectMake(0, -70, 320, 60)];
    if (self) {        
        //Add Image
        UIImage *image = [UIImage imageNamed:@"notice-drop-down"];
        UIImageView *background = [[UIImageView alloc] initWithImage:image];
        [self addSubview:background];

        //Add Label
        UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(10, self.frame.size.height/2-25, 300, 50)];
        [label setBackgroundColor:[UIColor clearColor]];
        [label setTextColor:[UIColor blackColor]];
        [label setText:message];
        label.numberOfLines = 0;
        [label setFont:[UIFont fontWithName:@"Hand of Sean" size:16]];
        //NSLog(@"FONT FAMILIES\n%@",[UIFont familyNames]);


        [self addSubview:label];

        //Add Close Button
        UIButton *closeButton = [[UIButton alloc] initWithFrame:CGRectMake(280, self.frame.size.height/2-15, 30, 30)];
        UIImage *closeImage = [UIImage imageNamed:@"notice-close"];
        [closeButton setImage:closeImage forState:UIControlStateNormal];
        [closeButton addTarget:self action:@selector(closeNoticeDropDown:) forControlEvents:UIControlEventTouchUpInside];
        [self addSubview:closeButton];

        //Animate In
        [UIView animateWithDuration:1
                              delay:0
                            options: UIViewAnimationCurveEaseIn
                         animations:^{
                             self.frame = CGRectMake(0,70,320,60);
                         }
                         completion:nil
         ];
    }
    return self;
}

-(void)closeNoticeDropDown:(id)self{
    NoticeDropDown *notice = (NoticeDropDown *)self;
    NSLog(@"Frame: %f",notice.frame.size.width);
    //Animate In
    [UIView animateWithDuration:1
                          delay:0
                        options: UIViewAnimationCurveEaseOut
                     animations:^{
                         notice.frame = CGRectMake(0,-70,320,60);
                     }
                     completion:^(BOOL finished){
                         [notice removeFromSuperview];
                         //notice = nil;
                     }
     ];
}

来自另一个视图控制器的视图调用:

noticeDropDown = [[NoticeDropDown alloc] initWithMessage:message];
[self.view insertSubview:noticeDropDown belowSubview:hudContainerTop];
4

2 回答 2

1

您可能会尝试在视图实例上调用您的方法(类似于[noticeDropDown closeNoticeDropDown:...]),但closeNoticeDropDown:它是一个类方法,您应该这样调用它:

[NoticeDropDown closeNoticeDropDown: noticeDropDown];

您的动画代码中也有一些看起来错误的东西:

  • [UIView commitAnimations];调用应该被删除,因为它们与 [UIView beginAnimations:... context:...] 方法配对使用,基于块的动画不需要它们

  • [sender removeFromSuperview];调用应该进入动画的完成块,否则它会在你的动画开始之前被调用,你不会得到想要的效果

于 2012-09-11T17:00:20.270 回答
1

您已将您的方法声明为类方法,但正在将消息发送到实例。如果您希望它仍然是一个类方法,请将 [NoticeDropDown 类] 作为目标参数传递给您的 addTarget:action:forControlEvemts: 方法。否则,将方法声明中的“+”替换为“-”。

此外 - 当 UIControl 操作具有发送者参数时,它将作为发送者发送控件 - 因此您将获得 UIButton 而不是您的视图。

我的建议是将您的操作更改为实例方法并将“发送者”替换为“自我”。

对于我通过手机发布的格式,我深表歉意。回到电脑前我会尝试修复。

编辑:

像这样更改您的更新方法:

-(void)closeNoticeDropDown:(id)sender{
    NSLog(@"Frame: %f",notice.frame.size.width);
    //Animate In
    [UIView animateWithDuration:1
                          delay:0
                        options: UIViewAnimationCurveEaseOut
                     animations:^{
                         self.frame = CGRectMake(0,-70,320,60);
                     }
                     completion:^(BOOL finished){
                         [self removeFromSuperview];
                     }
     ];
}

你不需要传入self一个方法,它总是存在的。

于 2012-09-11T17:01:41.643 回答