-
Notifications
You must be signed in to change notification settings - Fork 0
/
ViewController.m
39 lines (30 loc) · 918 Bytes
/
ViewController.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// ViewController.m
// endotools
//
// Created by Johnson Thomas on 11/22/12.
// Copyright (c) 2012 Johnson Thomas. All rights reserved.
//
#import "ViewController.h"
#import "RAIcalculateviewcontroller.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
//self.navigationController.navigationBar.barTintColor = [UIColor colorWithRed:255/255 green:102/255 blue:102/255 alpha:1];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
//- (IBAction)calculateRAIdose:(id)sender
//{
// UIAlertView* alert;
// alert = [[UIAlertView alloc] initWithTitle:@"Info" message:@"Much more info" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles: nil];
// [alert show];
//}
@end