-
Notifications
You must be signed in to change notification settings - Fork 0
/
TransfersViewController.m
140 lines (109 loc) · 2.72 KB
/
TransfersViewController.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#import "TransfersViewController.h"
#import "TivoDetailsViewController.h"
#include <syslog.h>
#include <time.h>
@implementation TransfersViewNavController
{
}
-(id)initWithRootViewController:(id)controller
{
self = [super initWithRootViewController:controller];
return self;
}
-(void)loadView
{
[super loadView];
}
-(void)setTivoObjects: (Beacon*)b withHttpServer:(TiVoHTTPServer*)h
{
beacon = b;
httpd = h;
}
-(void)setDVRMobilePrefs: (DVRMobilePrefs*)p
{
prefs = p;
tivos = [prefs GetTivos];
}
@end;
@implementation TransfersViewController
{
}
-(void)loadView
{
self.title = @"Transfers";
//self.tableView = [[UITableView alloc] initWithFrame:
// [[UIScreen mainScreen] bounds]];
self.view = [[[UIImageView alloc]
initWithImage:[UIImage imageNamed:@"transfers_coming_soon.png"]] autorelease];
}
-(void)viewDidLoad
{
}
-(void)setTivoObjects: (Beacon*)b withHttpServer:(TiVoHTTPServer*)h
{
beacon = b;
httpd = h;
}
-(void)setDVRMobilePrefs: (DVRMobilePrefs*)p
{
prefs = p;
tivos = [prefs GetTivos];
}
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
-(NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section
{
return 1;
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *MyIdentifier = @"MyIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
if (cell == nil) {
CGRect cellFrame = CGRectMake(0, 0, 300, 70);
cell = [[[UITableViewCell alloc] initWithFrame:cellFrame reuseIdentifier:MyIdentifier] autorelease];
}
//[cell setText:@" [Feature Not Implemented]"];
//cell.textAlignment = UITextAlignmentCenter;
return cell;
}
-(NSIndexPath *) tableView:(UITableView *)tableView
willSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
return nil;
}
-(void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
int row = [indexPath row];
}
-(CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath
{
return 80.0;
}
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
[self.tableView reloadData];
}
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning]; // Releases the view if it doesn't have a superview
// Release anything that's not essential, such as cached data
}
- (void)dealloc
{
[super dealloc];
}
@end