// // NoticeViewController.m // ChinaTheoryNetwork // // Created by 张毅成 on 2019/1/28. // Copyright © 2019 张毅成. All rights reserved. // #import "NoticeViewController.h" #import "NoticeTableViewCell.h" @interface NoticeViewController () @property (weak, nonatomic) IBOutlet UISearchBar *searchBar; @property (weak, nonatomic) IBOutlet UITableView *tableView; @property (strong, nonatomic) NSMutableArray *arrayData; @end @implementation NoticeViewController - (NSMutableArray *)arrayData { if (!_arrayData) { _arrayData = @[].mutableCopy; } return _arrayData; } - (void)viewDidLoad { [super viewDidLoad]; self.title = @"通知"; [self createTableView]; } - (void)createTableView { self.tableView.delegate = self; self.tableView.dataSource = self; self.tableView.tableFooterView = [UIView new]; self.tableView.rowHeight = UITableViewAutomaticDimension; self.tableView.estimatedRowHeight = 60; self.tableView.separatorStyle = 0; } - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { return 1; } - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return 30; // return self.arrayData.count; } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { NoticeTableViewCell *cell = [NoticeTableViewCell cellWithTableView:tableView]; return cell; } @end