动画弹出收起

作者: 失忆的程序员 | 来源:发表于2022-08-18 13:30 被阅读0次

// MARK: ----- 动画弹出
- (void)showWithCompletion:(void (^)(void))completion {
    self.backgroundColor = [UIColor colorWithRed:0/255.0 green:0/255.0 blue:0/255.0 alpha:0.0];
    [UIView animateWithDuration:0.25f animations:^{
        CGRect frame = self.frame;
        frame.origin.y = self.frame.size.height - frame.size.height;
        self.frame = frame;
    } completion:^(BOOL finished) {
        !completion ? : completion();
    }];
}
// MARK: ----- 动画收起
- (void)dismiss:(void (^)(void))completion {
    self.backgroundColor = [UIColor colorWithRed:0/255.0 green:0/255.0 blue:0/255.0 alpha:0.0];
    [[[UIApplication sharedApplication] keyWindow] endEditing:YES]; /// 收起键盘
    [UIView animateWithDuration:0.25f animations:^{
        CGRect frame = self.frame;
        frame.origin.y = self.frame.size.height;
        self.frame = frame;
    }completion:^(BOOL finished) {
        !completion ? : completion();
        [self removeFromSuperview];
    }];
}

相关文章

网友评论

    本文标题:动画弹出收起

    本文链接:https://www.haomeiwen.com/subject/xcdegrtx.html