diff options
author | Vitaly Takmazov | 2018-10-21 18:30:00 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-10-21 18:30:00 +0300 |
commit | d958a11cc1618e080b9aab9a0b84c942afd7012a (patch) | |
tree | d4b7b6985fba50d2f6005dddeaec00ea5c385aa2 /Juick/ViewControllers/ChatViewController.m | |
parent | c3bd91b2f6b02107322603487094f26259a16703 (diff) |
Chat styling
Diffstat (limited to 'Juick/ViewControllers/ChatViewController.m')
-rw-r--r-- | Juick/ViewControllers/ChatViewController.m | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Juick/ViewControllers/ChatViewController.m b/Juick/ViewControllers/ChatViewController.m index 489de66..c36bf1a 100644 --- a/Juick/ViewControllers/ChatViewController.m +++ b/Juick/ViewControllers/ChatViewController.m @@ -13,6 +13,7 @@ @interface ChatViewController () @property (nonatomic, readwrite, retain) UIView *inputAccessoryView; +@property (nonatomic, strong) NSString *me; @end @@ -25,8 +26,11 @@ self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone; self.tableView.keyboardDismissMode = UIScrollViewKeyboardDismissModeInteractive; self.tableView.allowsSelection = NO; + self.me = [[PDKeychainBindings sharedKeychainBindings] stringForKey:@"com.juick.username"]; [self reloadChat]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillChangeFrame:) name:UIKeyboardWillChangeFrameNotification object:nil]; + self.refreshControl = [UIRefreshControl new]; + [self.refreshControl addTarget:self action:@selector(reloadChat) forControlEvents:UIControlEventValueChanged]; } -(void) reloadChat { @@ -44,6 +48,7 @@ [self.tableView endUpdates]; [self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:[self.messages count]-1 inSection:0] atScrollPosition:UITableViewScrollPositionBottom animated:NO]; } + [self.refreshControl endRefreshing]; }]; } @@ -59,9 +64,8 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { BubbleMessageCell *cell = [tableView dequeueReusableCellWithIdentifier:@"bubbleMessageCell" forIndexPath:indexPath]; - - [cell configureWithMessage:[self.messages objectAtIndex:indexPath.row]]; - + Message *message = [self.messages objectAtIndex:indexPath.row]; + [cell configureWithMessage:message isMe:[self.me isEqualToString:message.user.uname]]; return cell; } |