-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReportViewController.m
More file actions
212 lines (165 loc) · 6.87 KB
/
Copy pathReportViewController.m
File metadata and controls
212 lines (165 loc) · 6.87 KB
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
//
// ReportViewController.m
// WatchAssembly
//
// Created by Jaewon on 2014. 8. 15..
// Copyright (c) 2014년 App:ple Pi. All rights reserved.
//
#import "ReportViewController.h"
#import "ReportDetailViewController.h"
@interface ReportViewController ()
@end
@implementation ReportViewController
int idx = 1;
UIActivityIndicatorView *indicator;
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
// Custom initialization
}
self.navigationController.title = @"성적표";
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
//self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc]initWithTitle:@"검색" style:nil target:nil action:nil];
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc]initWithImage:[UIImage imageNamed:@"icon_search.png"] style:nil target:nil action:nil];
indicator = [[UIActivityIndicatorView alloc]initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
indicator.frame = CGRectMake(0.0, 0.0, 40.0, 40.0);
indicator.center = self.view.center;
[self.view addSubview:indicator];
[indicator bringSubviewToFront:self.view];
[indicator startAnimating];
[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
NSURL *url = [NSURL URLWithString:@"http://watchassembly.applepi.kr/selectMembers.php?flag=all"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[[NSURLConnection alloc] initWithRequest:request delegate:self];
}
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
data = [[NSMutableData alloc] init];
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)theData
{
[data appendData:theData];
}
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
UIAlertView *errorView;
errorView = [[UIAlertView alloc]initWithTitle:@"Error" message:@"서버에 문제가 있거나 인터넷에 연결 되어있지 않습니다." delegate:nil cancelButtonTitle:@"확인" otherButtonTitles:nil];
[errorView show];
[indicator stopAnimating];
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
report = [NSJSONSerialization JSONObjectWithData:data options:nil error:nil];
[indicator stopAnimating];
[mainTableView reloadData];
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return [report count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MainCell"];
if(cell == nil)
{
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"MainCell"];
cell.selectionStyle = UITableViewCellSelectionStyleDefault;
CGRect frame1=CGRectMake(220,18, 80, 40);
UILabel *label1=[[UILabel alloc]init];
label1.frame=frame1;
label1.text= [[report objectAtIndex:indexPath.row] objectForKey:@"countSum"];
label1.tag = 1001;
[cell.contentView addSubview:label1];
}
float resizeWidth = 60.0;
float resizeHeight = 80.0;
NSURL *url = [NSURL URLWithString:[[report objectAtIndex:indexPath.row ] objectForKey:@"photo"]];
NSData *imageData = [NSData dataWithContentsOfURL:url];
UIImage *img = [[UIImage alloc] initWithData:imageData scale:0.6f];
UIGraphicsBeginImageContext(CGSizeMake(resizeWidth,resizeHeight));
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextTranslateCTM(context, 0.0, resizeHeight);
CGContextScaleCTM(context, 1.0, -1.0);
CGContextDrawImage(context, CGRectMake(0.0, 0.0, resizeWidth,resizeHeight),[img CGImage]);
UIImage *scaledImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
cell.imageView.image = scaledImage;
cell.textLabel.text = [[report objectAtIndex:indexPath.row] objectForKey:@"name"];
cell.detailTextLabel.text = [[report objectAtIndex:indexPath.row] objectForKey:@"party"];
cell.detailTextLabel.textColor = [UIColor grayColor];
/*
UILabel *label1=[cell viewWithTag:1001];
label1.text=[[report objectAtIndex:indexPath.row] objectForKey:@"countSum"];
*/
/*
NSUserDefaults *myPrefs = [NSUserDefaults standardUserDefaults];
[myPrefs setObject:[[report objectAtIndex:indexPath.row]objectForKey:@"idx"] forKey:@"index"];
[myPrefs synchronize];
*/
return cell;
}
/*
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
NSIndexPath *indexPath = [self.tableView indexPathForSelectedRow];
NSString *string = [report[indexPath.row] objectForKey: @"idx"];
ReportDetailViewController *detailViewController = [segue destinationViewController];
detailViewController.Idx = string;
}
*/
/*
// Override to support conditional editing of the table view.
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
// Return NO if you do not want the specified item to be editable.
return YES;
}
*/
/*
// Override to support editing the table view.
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete) {
// Delete the row from the data source
[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
} else if (editingStyle == UITableViewCellEditingStyleInsert) {
// Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
}
}
*/
/*
// Override to support rearranging the table view.
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath
{
}
*/
/*
// Override to support conditional rearranging of the table view.
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
{
// Return NO if you do not want the item to be re-orderable.
return YES;
}
*/
/*
#pragma mark - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
}
*/
@end