28 lines
602 B
Objective-C
28 lines
602 B
Objective-C
//
|
|
// ShareViewController.h
|
|
// iOS (Share Extension)
|
|
//
|
|
// Created by Tomek Wójcik on 25/09/2025.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class HPAPI;
|
|
|
|
@interface ShareViewController : UIViewController
|
|
|
|
@property HPAPI *api;
|
|
|
|
@property IBOutlet UIActivityIndicatorView *progressIndicator;
|
|
@property IBOutlet UIView *savingView;
|
|
@property IBOutlet UIView *needsSetupView;
|
|
@property IBOutlet UIView *doneView;
|
|
@property IBOutlet UIView *errorView;
|
|
@property IBOutlet UIView *unprocessableEntityView;
|
|
@property IBOutlet UILabel *unameLabel;
|
|
|
|
-(IBAction)doCancel:(id)sender;
|
|
-(IBAction)doClose:(id)sender;
|
|
|
|
@end
|