34 lines
853 B
Objective-C
34 lines
853 B
Objective-C
//
|
|
// ViewControllerServiceMenu.h
|
|
// FMC Planner 2
|
|
//
|
|
// Created by Kilian Hofmann on 26.03.16.
|
|
// Copyright © 2016 Kilian Hofmann. All rights reserved.
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
#import "DropboxV2ObjC.h"
|
|
#import "SharedDeclerations.h"
|
|
#import "TableViewController.h"
|
|
#import "ViewController.h"
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface ViewControllerServiceMenu : UIViewController
|
|
|
|
#pragma mark - Refrence to other views in app
|
|
|
|
@property (strong, nonatomic) ViewController *main;
|
|
|
|
#pragma mark - Outlet fo Dropbox buttons
|
|
|
|
@property (strong, nonatomic) IBOutlet UIButton *dbConnectButton;
|
|
@property (strong, nonatomic) IBOutlet UIButton *dbDownload;
|
|
@property (strong, nonatomic) IBOutlet UIButton *dbUpload;
|
|
|
|
#pragma mark - Dropbox authentictaion methods
|
|
|
|
- (IBAction)dbConnect:(UIButton *)sender;
|
|
- (IBAction)dbDisconnect:(UIButton *)sender;
|
|
|
|
@end
|