1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-08-08 02:19:41 +03:00

22 lines
425 B
Objective-C

//
// SCTapAnimationView.h
// SCCamera
//
// Created by Alexander Grytsiuk on 8/26/15.
// Copyright (c) 2015 Snapchat, Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
@class SCTapAnimationView;
typedef void (^SCTapAnimationViewCompletion)(SCTapAnimationView *);
@interface SCTapAnimationView : UIView
+ (instancetype)tapAnimationView;
- (void)showWithCompletion:(SCTapAnimationViewCompletion)completion;
@end