summaryrefslogtreecommitdiff
path: root/Volta/Views/StatsViewController.m
diff options
context:
space:
mode:
Diffstat (limited to 'Volta/Views/StatsViewController.m')
-rw-r--r--Volta/Views/StatsViewController.m53
1 files changed, 53 insertions, 0 deletions
diff --git a/Volta/Views/StatsViewController.m b/Volta/Views/StatsViewController.m
new file mode 100644
index 0000000..baa1976
--- /dev/null
+++ b/Volta/Views/StatsViewController.m
@@ -0,0 +1,53 @@
+//
+// StatsViewController.m
+// Volta
+//
+// Created by Ronny Fenrich on 2013-06-13.
+// Copyright (c) 2013 Decoder. All rights reserved.
+//
+
+#import "StatsViewController.h"
+
+@interface StatsViewController ()
+
+@property (weak, nonatomic) IBOutlet UITextField *startDate;
+@property (weak, nonatomic) IBOutlet UITextField *endDate;
+@property (weak, nonatomic) IBOutlet UIScrollView *content;
+
+@end
+
+@implementation StatsViewController
+
+
+- (void)viewDidLoad
+{
+ [super viewDidLoad];
+
+ self.navigationController.navigationBarHidden = NO;
+ self.navigationItem.hidesBackButton = YES;
+ self.navigationController.navigationBar.barStyle = UIBarStyleBlack;
+}
+
+- (IBAction)statsCurrentMonth:(id)sender
+{
+
+}
+
+- (IBAction)statsLast30days:(id)sender {
+}
+
+- (IBAction)statsLast60days:(id)sender {
+}
+
+- (IBAction)statsCurrentYear:(id)sender {
+}
+
+- (IBAction)statsStartdateEnddate:(id)sender {
+}
+- (void)viewDidUnload {
+ [self setStartDate:nil];
+ [self setEndDate:nil];
+ [self setContent:nil];
+ [super viewDidUnload];
+}
+@end