diff options
author | Vitaly Takmazov | 2019-03-21 21:42:34 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2019-03-21 21:42:34 +0300 |
commit | 31cee12a4f5c2733965e99e2fa9add28fee266c2 (patch) | |
tree | 366dd3be5e968a2a2c4e47d4ddccc09a1364efd9 /Juick/ViewControllers/ThreadViewController.m | |
parent | a47973e0d7a18598268efdbe4db83446c56d4e80 (diff) |
Cleanup
Diffstat (limited to 'Juick/ViewControllers/ThreadViewController.m')
-rw-r--r-- | Juick/ViewControllers/ThreadViewController.m | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/Juick/ViewControllers/ThreadViewController.m b/Juick/ViewControllers/ThreadViewController.m index 3b6854c..ead94fe 100644 --- a/Juick/ViewControllers/ThreadViewController.m +++ b/Juick/ViewControllers/ThreadViewController.m @@ -10,10 +10,6 @@ #import "NewPostViewController.h" #import "MessageCell.h" -@interface ThreadViewController () - -@end - @implementation ThreadViewController @@ -23,8 +19,7 @@ } -(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { - NSString * cellIdentifier = @"messageCell"; - MessageCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier forIndexPath:indexPath]; + MessageCell *cell = [tableView dequeueReusableCellWithIdentifier:messageCellIdentifier forIndexPath:indexPath]; [self performSegueWithIdentifier:@"replySegue" sender:cell]; } |