View Controller加载所有表视图单元而不是第一个单元

时间:2014-03-28 17:35:34

标签: ios uitableview heightforrowatindexpath

这是我的控制器的简化版本。我正在创建一个表视图,并使用核心数据查询初始化此控制器,该查询返回大约300个对象的数组。

我通过将每个单元格的高度硬编码为100.0f来简化代码。对第一次加载时屏幕上实际可见的前5-6个单元格的加载,对heightForRowAtIndexPath的调用实际上是300次(对于所有单元格),这使得UI加载缓慢。

知道我在这里做错了什么吗?

@interface PortsViewController () <UITableViewDataSource, UITableViewDelegate>
    @property (nonatomic, strong) UITableView *tableView;

    @end

    @implementation PortsViewController

    #pragma mark - setters
    - (void)setPorts:(NSArray *)ports
    {
        _ports = ports;
    }

    #pragma mark - Controller Methods
    - (id)init
    {
        self = [super init];
        self.screenName = kPortsListPage;
        NSArray *ports = [Port MR_findAllSortedBy:@"name" ascending:TRUE];
        [self setPorts:ports];
        return self;
    }

    - (void)loadView {
        self.view = [[UIView alloc] initWithFrame:[UIScreen mainScreen].bounds];
        [self loadTableView];
    }

    - (void)viewDidLoad
    {
        [super viewDidLoad];
        self.tableView.delegate = self;
        self.tableView.dataSource = self;

        self.title = @"Ports";
    }

    #pragma mark - Load Helpers
    -(void)loadTableView {
        self.tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];
        self.tableView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;

        [self.view addSubview:self.tableView];
    }

    #pragma mark - UITableViewDataSource Methods
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
    {
        return [self.ports count];
    }

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        PortTableViewCell* cell = [table dequeueReusableCellWithIdentifier:@"port"];

if (!cell) {
    PortTableViewCell* cell = [[PortTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"port"];
}

        cell.port = self.ports[indexPath.row]; 
        return cell;
    }

    #pragma mark - UITableViewDelegate Methods
    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
        NSLog(@"here");
        return 100.0f;
    }

    @end

1 个答案:

答案 0 :(得分:0)

表格视图需要知道它的总高度。如果你实现heightForRowAtIndexPath:,它将被调用每一行,因此表格知道它有多高。

如果每一行具有相同的高度,只需在表视图上设置rowHeight属性,而不是实现heightForRowAtIndexPath委托方法。

如果每一行都有不同的高度,那么除了尽可能提高heightForRowAtIndexPath的实施效率之外别无他法。

从iOS 7开始,estimatedRowHeight上有UITableView个属性。使用它应该有助于改善事物。