gpt4 book ai didi

ios - 初始帧 : reuseIdentifier : is deprecated

转载 作者:IT王子 更新时间:2023-10-29 07:48:17 27 4
gpt4 key购买 nike

在我的项目中,我收到了弃用警告,initWithFrame : reuseIdentifier : is deprecated

我不知道这是什么意思,谁能告诉我如何解决这个警告谢谢

这是短代码

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

static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
}

// Set up the cell...
NSString *cellValue = [itemsList objectAtIndex:indexPath.row];
cell.textLabel.text = cellValue;

return cell;
}

警告就在那一行:

cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];

最佳答案

Take a look at this Apple's page

Here Red-Highlighted Functions and Properties will be Removed in Future by Apple in upcoming SDK.

以便我们在创建 App 时应避免它们。

因为我们需要一个长期的项目,它应该运行起来不会崩溃。

已弃用的方法意味着它已被替换/退役,但在该语言的当前版本中仍然有效。它应该被避免并且可能导致问题/错误。查看应该列出您可以使用的替代方法的文档。

这里应该使用方法

 - initWithStyle:reuseIdentifier: 

那么你的 if 循环看起来像这样

if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:CellIdentifier] autorelease];
}

关于ios - 初始帧 : reuseIdentifier : is deprecated,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6967506/

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