ReplayMeLikeVC.m 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. //
  2. // ReplayMeLikeVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/6/11.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "ReplayMeLikeVC.h"
  9. #import "MyTDGroupView.h"
  10. #import "ReplayMeCell.h"
  11. #import "ReplayMeSearchVC.h"
  12. @interface ReplayMeLikeVC ()<UITableViewDelegate,UITableViewDataSource>
  13. @property (weak, nonatomic) IBOutlet UIView *navBar;
  14. @property (weak, nonatomic) IBOutlet UIView *HeadView;
  15. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  16. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  17. @property (strong, nonatomic) MyTDGroupView *SearchView;
  18. @end
  19. @implementation ReplayMeLikeVC
  20. +(ReplayMeLikeVC *)initReplayMeLikeVC{
  21. ReplayMeLikeVC *controller = [StoryboardManager.shared.Source instantiateViewControllerWithIdentifier:@"ReplayMeLikeVC"];
  22. return controller;
  23. }
  24. - (MyTDGroupView *)SearchView
  25. {
  26. if (!_SearchView) {
  27. _SearchView = [[MyTDGroupView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 36)];
  28. }
  29. return _SearchView;
  30. }
  31. - (void)viewDidLoad {
  32. [super viewDidLoad];
  33. self.fd_prefersNavigationBarHidden = YES;
  34. self.tableView.delegate = self;
  35. self.tableView.dataSource = self;
  36. [self.HeadView addSubview:self.SearchView];
  37. [self.SearchView mas_makeConstraints:^(MASConstraintMaker *make) {
  38. make.top.mas_offset(6);
  39. make.left.right.mas_equalTo(self.HeadView);
  40. make.height.mas_offset(36);
  41. }];
  42. self.titleL.text = @"共收到赞(346)";
  43. WS(weakSelf);
  44. [self.SearchView.button setAction:^{
  45. ReplayMeSearchVC * vc = [[ReplayMeSearchVC alloc] init];
  46. [weakSelf.navigationController pushViewController:vc animated:YES];
  47. }];
  48. [self.tableView reloadData];
  49. }
  50. #pragma mark -UITableViewDelegate
  51. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  52. {
  53. return 20;
  54. }
  55. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
  56. {
  57. return UITableViewAutomaticDimension;
  58. }
  59. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  60. {
  61. ReplayMeCell * cell = [ReplayMeCell configCell:tableView indexPath:indexPath];
  62. cell.contentL.text = @"点赞了你的笔记";
  63. [cell setDatasubText];
  64. if (indexPath.row >= 3) {
  65. cell.redV.hidden = YES;
  66. }
  67. return cell;
  68. }
  69. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
  70. {
  71. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  72. }
  73. @end