FMCPlanner2/FMC Planner 2/ViewController.m

32 lines
576 B
Objective-C

//
// ViewController.m
// FMC Planner 2
//
// Created by Kilian Hofmann on 19.03.16.
// Copyright © 2016 Kilian Hofmann. All rights reserved.
//
#import "ViewController.h"
int SPACING = 10;
int NUM_BUTTONS_PER_ROW = 5;
int NUM_ROWS_OF_BUTTON = 6;
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end