summaryrefslogtreecommitdiff
path: root/Juick/MasterViewController.m
blob: bd75f8244f0af499acb28ec6eaeef5037b3e5c70 (plain) (blame)
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
//
//  MasterViewController.m
//  Juick
//
//  Created by Vitaly Takmazov on 26.10.13.
//  Copyright (c) 2013 com.juick. All rights reserved.
//

#import "SWRevealViewController.h"

#import "MasterViewController.h"

#import "MessageCell.h"

#import "Message.h"

static NSString *CellIdentifier = @"MessageCell";

@interface MasterViewController () {
    NSMutableArray *messages;
}
@end

@implementation MasterViewController


- (void)viewDidLoad
{
    [super viewDidLoad];
    self.title = @"Messages";
    // Change button color
    
    // Set the gesture
    messages = [[NSMutableArray alloc] init];
    NSError *error;
    NSURL *url = [NSURL URLWithString:@"http://api.juick.com/messages"];
    NSString *data = [NSString stringWithContentsOfURL:url encoding:NSUTF8StringEncoding error:&error];
    if (data == nil) {
        NSLog(@"Download Error: %@", error);
        return;
    }
    NSArray *resultObject = [NSJSONSerialization JSONObjectWithData:[data dataUsingEncoding:NSUTF8StringEncoding] options:kNilOptions error:&error];
    if (resultObject == nil) {
        NSLog(@"JSON Error: %@", error);
        return;
    }
    
    for (NSDictionary *message in resultObject) {
        Message *msg = [[Message alloc] initWithDictionary:message];
        [messages addObject:msg];
    }
    //UINib *cellNib = [UINib nibWithNibName:@"MessageCell" bundle:nil];
    //[self.tableView registerNib:cellNib forCellReuseIdentifier:@"MessageCell"];
    [self.tableView registerClass:[MessageCell class] forCellReuseIdentifier:CellIdentifier];
    
}

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(contentSizeCategoryChanged:)
                                                 name:UIContentSizeCategoryDidChangeNotification
                                               object:nil];
}

- (void)viewDidDisappear:(BOOL)animated
{
    [super viewDidDisappear:animated];
    
    [[NSNotificationCenter defaultCenter] removeObserver:self
                                                    name:UIContentSizeCategoryDidChangeNotification
                                                  object:nil];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (void)contentSizeCategoryChanged:(NSNotification *)notification
{
    [self.tableView reloadData];
}

-(void) parserDidEndDocument:(NSXMLParser *)parser {
    [self.tableView reloadData];
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return messages.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    MessageCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
    [cell updateFonts];
    Message *msg = [messages objectAtIndex:indexPath.row];
    cell.titleLabel.text = msg.user;
    cell.bodyLabel.text =  msg.text;
    [cell setNeedsUpdateConstraints];
    return cell;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    
    MessageCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    
    [cell updateFonts];
    
    Message *msg = [messages objectAtIndex:indexPath.row];
    cell.titleLabel.text = msg.user;
    cell.bodyLabel.text =  msg.text;
    
    cell.bodyLabel.preferredMaxLayoutWidth = tableView.bounds.size.width - (kLabelHorizontalInsets * 2.0f);
    
    [cell setNeedsUpdateConstraints];
    [cell updateConstraintsIfNeeded];
    [cell.contentView setNeedsLayout];
    [cell.contentView layoutIfNeeded];
    
    CGFloat height = [cell.contentView systemLayoutSizeFittingSize:UILayoutFittingCompressedSize].height;
    
    return height;
}

- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 500.0f;
}


@end