blob: af56bc338607a0e73cc0cd9ba79c65c217c9f59d (
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
|
//
// ThreadViewController.m
// Juick
//
// Created by Vitaly Takmazov on 24/09/2017.
// Copyright © 2017 com.juick. All rights reserved.
//
#import "ThreadViewController.h"
#import "NewPostViewController.h"
#import "MessageCell.h"
#import "APIClient.h"
@implementation ThreadViewController
-(void) viewDidLoad {
[self setTitle:@"Thread"];
[self setPath:[APIClient threadUrl]];
[super viewDidLoad];
self.messagesDelegate = self;
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(replyPosted:) name:ReplyPostedNotificationName object:nil];
}
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
MessageCell *cell = [tableView dequeueReusableCellWithIdentifier:messageCellIdentifier forIndexPath:indexPath];
[self performSegueWithIdentifier:@"replySegue" sender:cell];
}
-(void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
if ([segue.identifier isEqual: @"replySegue"]) {
Message *msg = [self.messages objectAtIndex:[self.tableView indexPathForSelectedRow].row];
NewPostViewController *postVC = (NewPostViewController *)[((UINavigationController *)segue.destinationViewController)
.viewControllers firstObject];
[postVC setReplyTo:msg];
}
}
-(void) loadMore {
Message *lastMsg = [self.messages lastObject];
[self setShouldScrollToUnreadOnRefresh:lastMsg.rid > 0];
[self refreshData];
}
- (void)replyPosted:(NSNotification *) notification {
[self setShouldScrollToUnreadOnRefresh:YES];
[self refreshData];
}
@end
|