blob: d5118e0e0a3d914003054f977ec83189ac1a016e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//
// JJJAuthorizationField.h
// Juick
//
// Created by Vitaly Takmazov on 15.05.2020.
// Copyright © 2020 com.juick. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <AuthenticationServices/AuthenticationServices.h>
NS_ASSUME_NONNULL_BEGIN
IB_DESIGNABLE
API_AVAILABLE(ios(13.0))
@interface JJJAuthorizationField : UIView
@property (nonatomic, strong) IBInspectable ASAuthorizationAppleIDButton *button;
@end
NS_ASSUME_NONNULL_END
|