25 lines
521 B
Objective-C
25 lines
521 B
Objective-C
//
|
|
// TableViewController.h
|
|
// FMC Planner 2
|
|
//
|
|
// Created by Kilian Hofmann on 27.03.16.
|
|
// Copyright © 2016 Kilian Hofmann. All rights reserved.
|
|
//
|
|
|
|
#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
|