FMCPlanner2/FMC Planner 2/TableViewController.h
2016-03-31 15:57:13 +02:00

26 lines
545 B
Objective-C

//
// TableViewController.h
// FMC Planner 2
//
// Created by Kilian Hofmann on 27.03.16.
// Copyright © 2016 Kilian Hofmann. All rights reserved.
//
#import "AppDelegate.h"
#import "SharedDeclerations.h"
#import "ViewController.h"
#import <UIKit/UIKit.h>
@class ViewController;
@interface TableViewController : UITableViewController
#pragma mark - Refrence to other views in app
@property (strong, nonatomic) ViewController *main;
#pragma mark - Table view data source
@property (strong, nonatomic) NSMutableArray *dataSource;
@end