You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
425 B
21 lines
425 B
//
|
|
// 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
|