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.
Source-SnapChat/Features/TapToFocus/SCTapAnimationView.h
2018-05-24 00:22:14 +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