23 lines
393 B
Objective-C
23 lines
393 B
Objective-C
//
|
|
// MainViewController.h
|
|
// HotPocket (iOS)
|
|
//
|
|
// Created by Tomek Wójcik on 25/09/2025.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MainViewController : UIViewController
|
|
|
|
@property IBOutlet UIButton *instanceURLButton;
|
|
@property IBOutlet UIButton *logoutButton;
|
|
|
|
-(IBAction)doOpenInstanceURL:(id)sender;
|
|
-(IBAction)doLogOut:(id)sender;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|