gpt4 book ai didi

ios - [[[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault复用标识符:CellIdentifier]]的预期标识符

转载 作者:行者123 更新时间:2023-12-01 17:41:57 25 4
gpt4 key购买 nike

我的if语句中不断收到Expected Identifier

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell1";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];

//NSDate *object = _objects[indexPath.row];

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

最佳答案

这里:

cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]];
^ ^

您还有一副括号。最外面的一对是多余的。

关于ios - [[[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault复用标识符:CellIdentifier]]的预期标识符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16282381/

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