-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCDRViewController.m
More file actions
45 lines (36 loc) · 869 Bytes
/
CDRViewController.m
File metadata and controls
45 lines (36 loc) · 869 Bytes
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
40
41
42
43
44
45
//
// CDRViewController.m
// CoreData+DI+RAC
//
// Created by 和泉田 領一 on 2013/12/23.
// Copyright (c) 2013年 CAPH. All rights reserved.
//
#import "CDRViewController.h"
#import "CDRDataSource.h"
#import "OCLogTemplate.h"
@interface CDRViewController ()
@end
@implementation CDRViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)buttonTapped:(id)sender
{
NSLog(@"My datasource is: %@", _dataSource);
}
@end