gpt4 book ai didi

ios - 发现多个名为 'location' 的方法具有不匹配的结果、参数类型或属性

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:54:20 25 4
gpt4 key购买 nike

我已经阅读了有关多种方法的其他问题,但仍然不知道如何修复我的代码。我将不胜感激。我在发生错误的语句周围放置了一个 *

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath: 
(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"eventCell";
EQCalendarCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell = [[EQCalendarCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier:CellIdentifier];
}
cell.titleLabel.text = [[self.eventsList objectAtIndex:indexPath.row] title];

    cell.locationLabel.text = [[self.eventsList objectAtIndex:indexPath.row] location];

    NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setDateFormat: @"dd-MM-yy HH:mm"];
NSString *startDateString = [df stringFromDate:[[self.eventsList
objectAtIndex:indexPath.row] startDate]];

cell.startDateLabel.text = startDateString;

NSString *endDateString = [df stringFromDate:[[self.eventsList
objectAtIndex:indexPath.row] endDate]];


cell.endDateLabel.text = endDateString;

return cell;
}

提前感谢您的帮助。

最佳答案

转换从 self.eventsList 集合中检索对象的结果应该可以解决问题。例如:

cell.locationLabel.text = [((MyClassName *)[self.eventsList objectAtIndex:indexPath.row]) location];

用集合中类的名称替换 MyClassName

关于ios - 发现多个名为 'location' 的方法具有不匹配的结果、参数类型或属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23058137/

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