gpt4 book ai didi

ios - 表格 View 单元格仅在滚动关闭然后重新打开后才能正确屏蔽

转载 作者:技术小花猫 更新时间:2023-10-29 10:19:30 28 4
gpt4 key购买 nike

我在调用 tableView:cellForIndexPath 期间修改了一个 TableView 单元格,但是在单元格滚动关闭然后重新打开之前,修改不会出现。我意识到我可以修改 .xib 文件或分配/初始化一个单元而不是调用 dequeue,但我想了解发生了什么。

更改涉及遮盖单元格以实现圆底角。如果我改为设置圆角半径(即 cell.layer.cornerRadius = ...),它使所有角变圆,我看不出问题。

更新:

我最初没有发布代码,因为它是专有的,涉及很多复杂性,而且我认为这个问题在没有任何细节的情况下是一个合理的问题。但是,根据响应,这里是一个显示问题的简化片段,唯一的变化是实际的单元格标识符。我还更新了描述/问题以简化场景。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"TheCorrectCellIdentifier" forIndexPath:indexPath];
UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:cell.bounds byRoundingCorners:UIRectCornerBottomLeft | UIRectCornerBottomRight cornerRadii:CGSizeMake(4., 4.)];
CAShapeLayer *maskLayer = [CAShapeLayer layer];
maskLayer.frame = cell.bounds;
maskLayer.path = maskPath.CGPath;
cell.layer.masksToBounds = YES;
cell.layer.mask = maskLayer;
return cell;
}

最佳答案

您的代码运行良好。但是,如果您在 cellForRowAtIndexPath: 中仍然遇到角半径问题,请尝试在 willDisplayCell: 中。我尝试了这两种方法并且工作正常。

willDisplayCell:

Tells the delegate the table view is about to draw a cell for a particular row.

A table view sends this message to its delegate just before it uses cell to draw a row, thereby permitting the delegate to customize the cell object before it is displayed. This method gives the delegate a chance to override state-based properties set earlier by the table view, such as selection and background color. After the delegate returns, the table view sets only the alpha and frame properties, and then only when animating rows as they slide in or out. Here is my code.

据我所知,Apple 提供了两组不同的方法(协议(protocol)),名为 UITableViewDataSourceUITableViewDelegate 来管理 UITableView。

UITableViewDataSource :数据源为单元格提供实际数据以填充详细信息。

UITableViewDelegate:在另一端,委托(delegate)负责提供有关 tableview 视觉布局的信息并处理用户交互。

因此,结论是 DataSource 主要处理表的内容(数据),Delegate 处理 tableview 组件的呈现和交互。

让我们来看看我们处理 TableView 的方式。

我们都非常喜欢 UITableViewDataSource 方法 tableView:cellForRowAtIndexPath:,该方法负责创建或重用有效的 UITableViewCell,并为每个索引路径提供适当的详细信息。我们倾向于进行单元格布局此方法中的配置和 UI 修改。

调用tableView:cellForRowAtIndexPath:后,系统进行布局配置,然后调用tableView:willDisplayCell:forRowAtIndexPath:方法,单元格显示在屏幕上。

所以我们可以使用这个方法来配置Tableview cell的 View (可能是Apple给我们推荐了这个方法!!!)。

所以我个人更喜欢使用 tableView:cellForRowAtIndexPath:tableView:willDisplayCell:forRowAtIndexPath: 方法创建单元格和左单元格 UI 配置任务。

willDisplayCell: 中应用 mask

 -(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{

UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:cell.bounds byRoundingCorners:UIRectCornerBottomLeft | UIRectCornerBottomRight cornerRadii:CGSizeMake(10.0, 10.0)];
CAShapeLayer *maskLayer = [CAShapeLayer layer];
maskLayer.frame = cell.bounds;
maskLayer.path = maskPath.CGPath;
cell.layer.masksToBounds = YES;
cell.layer.mask = maskLayer;
}

这是我的cellForRowAtIndexPath:

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

static NSString *identifier = @"cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier forIndexPath:indexPath];

cell.textLabel.text = [NSString stringWithFormat:@"Row : %ld ", (long)indexPath.section];
return cell;
}

输出:

enter image description here

关于ios - 表格 View 单元格仅在滚动关闭然后重新打开后才能正确屏蔽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34984201/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com