This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.
FlashBack/FlashBack/UIAlertAction+Common.h
2020-02-02 15:21:58 -05:00

19 lines
397 B
Objective-C

//
// UIAlertAction+Common.h
// FlashBack
//
// Created by Aaron KJ on 2/2/20.
// Copyright © 2020 Micah Gomez. All rights reserved.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface UIAlertAction (Common)
+ (UIAlertAction *)okAction;
+ (UIAlertAction *)okActionWithHandler:(void (^)(UIAlertAction *action))handler;
+ (UIAlertAction *)cancelAction;
@end
NS_ASSUME_NONNULL_END