18 lines
368 B
Objective-C
18 lines
368 B
Objective-C
//
|
|
// ApplePayExampleViewController.h
|
|
// Non-Card Payment Examples
|
|
//
|
|
// Created by Ben Guo on 2/22/17.
|
|
// Copyright © 2017 Stripe. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@protocol ExampleViewControllerDelegate;
|
|
|
|
@interface ApplePayExampleViewController : UIViewController
|
|
|
|
@property (nonatomic, weak) id<ExampleViewControllerDelegate> delegate;
|
|
|
|
@end
|