gpt4 book ai didi

ios - cellForRowAtIndexPath 未对来自 NIB 文件的所有自定义 View 单元执行

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:01:18 26 4
gpt4 key购买 nike

我在运行两个 TableView 时遇到问题s 在一个 ViewController .

编辑:
为了使问题更容易理解,我将代码片段放在代码下方。

可能相关的事情:

  • 两者都使用自定义单元格。
  • 从我对调试器所做的工作来看,它虽然没有通过以下 if 语句:

    if (tableView == self.tblFriendsList){...}

  • 3.最初我尝试使用 Containment View 添加第二个 UITableViewController,但现在我选择尝试使用 UITableView。
  • 包含 View (包括两个 tableViews)来自一个 NIB。
  • 我已经尝试手动添加委托(delegate)和数据源,并通过文件的所有者。
  • 我已经更改了代码,以便如果它不执行 if 语句,那么它将执行另一个表(已成功设置)所需的内容,但以前当我使用时它也适用于第一个表我在下面写的例子。当用作 tableView 或尝试将整个 ViewController 添加到 subview 时,另一个表无法加载(我一直在两者之间进行交换以尝试解决此问题)。
  • 对实际代码进行了多次拼写检查,所以我更多地认为这可能与它没有输入上面提到的 if 语句的事实有关。
  • 我从视频/Stack Exchange 中看到的大多数示例主要是在今年之前,所以我想知道是否有我错过的实用编码更新。
  • 可悲的是,我只是为那些想要精确复制其设计的人做这件事,否则我会想到一个更好的选择!
  • 到目前为止,我已经尝试了所有的答案,但结果很短......虽然我已经看过太多成功的教程,所以我很不确定发生了什么有趣的事情......

  • 再次编辑 11。即使在设置 tableView 标记并运行 if 语句时,调试器仍会显示跳过 if 语句的代码。即使当 重新加载数据 方法被调用,调试器在它应该的时候没有另一个中断。

    目前,代码如下:

    对于 viewDidLoad:
    - (void)viewDidLoad {

    [super viewDidLoad];
    // Do any additional setup after loading the view from its nib.
    self.m_arrVenueList=[[NSMutableArray alloc]init];
    self.m_dictCells = [[NSMutableDictionary alloc] init];

    [self setNavigationProperties];
    [self loadFriendByLocation];
    [self setRefreshController];
    self.m_dictFriendListCells = [[NSMutableDictionary alloc] init];

    self.tblFriendLocation.delegate = self;
    self.tblFriendLocation.dataSource = self;

    self.tblFriendsList.delegate = self;
    self.tblFriendsList.dataSource = self;
    [self.tblFriendsList reloadData];
    }

    对于 numberOfRowsInSection:

    注意:每个部分只有一个部分。
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    if (tableView == self.tblFriendsList) {
    return [self.arrFriendsList count];
    }
    // Return the number of rows in the section.
    return [self.m_arrVenueList count];
    }

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

    if (tableView == self.tblFriendsList) {
    NSDictionary *friends=[self.arrFriendsList objectAtIndex:indexPath.row];

    NSString *friendID = [Utility formattedValue:[friends objectForKey:@"user_id"]];

    // Configure the cell using friend object...
    NSString *sIdentifier = [NSString stringWithFormat:@"TableCell_%ld",(long)friendID];

    FriendListVenueCell *cell = (FriendListVenueCell *)[self.m_dictCells objectForKey:sIdentifier];
    cell.selectionStyle = UITableViewCellSelectionStyleNone;

    if (cell == nil)
    {
    cell = (FriendListVenueCell*)[Utility getViewFromXib: @"FriendListVenueCell" classname:[FriendListVenueCell class] owner:tableView];
    if (indexPath.row%2 != 0)
    {
    cell.contentView.backgroundColor = UIColorWithRGB(11,21,39);
    }
    else
    {
    cell.contentView.backgroundColor = UIColorWithRGB(12,23,32);
    }
    }
    [cell setCellDataForFriend:friends];
    [self.m_dictCells setObject:cell forKey:sIdentifier];

    return cell;
    }

    // Configure the cell using friend object...
    NSString *sIdentifier = [NSString stringWithFormat:@"TableCell_%ld",(long)indexPath.row];
    FriendsAtVenueCell *cell = (FriendsAtVenueCell*)[self.m_dictCells objectForKey:sIdentifier];
    if (cell == nil)
    {
    cell = (FriendsAtVenueCell *)[Utility getViewFromXib:@"FriendsAtVenueCell" classname:[FriendsAtVenueCell class] owner:tableView];
    cell.m_FriendViewContrller = self;
    [self.m_dictCells setObject:cell forKey:sIdentifier];
    if (indexPath.row%2 != 0)
    {
    cell.contentView.backgroundColor = UIColorWithRGB(11,21,39);
    }
    else
    {
    cell.contentView.backgroundColor = UIColorWithRGB(12,23,32);
    }
    }
    cell.delegate=self;
    Venue *tempDic=(Venue*)[self.m_arrVenueList objectAtIndex:indexPath.row];
    [cell setCellData:tempDic];

    if (tempDic.nVenueId == 0)
    {
    [cell.m_imgLogo setHidden:YES];
    [cell.m_imgLogobg setHidden:YES];
    [cell.m_btnFollow setHidden:YES];

    }
    cell.btnFifthImg.tag = indexPath.row;
    cell.m_btnFollow.tag = tempDic.nVenueId;
    cell.m_RowId= indexPath.row;
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    return cell;

    }

    到目前为止,我试图做的——从我从 StackExchange 中读到的和在教程中看到的——是拥有方法 cellForRowAtIndexPath每个 cell 都有单独的案例然后返回 cell .

    例子包括
    if (tableView == oneTableViewOutlet) { 
    //load cell
    return cell;
    } else if (tableView == anotherTableViewOutlet) {
    //load cell
    return cell;
    }

    希望这不会使问题太长,我正在尝试浓缩它!

    编辑完成

    我在一些视频中成功观看了它,他们添加了 delegatedatasource各自为自己 TableView socket ,它从那里开始工作,但我遇到了一个 socket 加载而不是另一个 socket 的问题。

    上图让我调试了这个问题,其中我已经逐步执行了函数的执行并且它成功启动了第一个案例,但随后从函数返回并且没有为其他 TableView 执行。

    该代码很棘手,因为我有自定义案例,但如果对调试或引用有任何其他想法可以提供帮助,我们将不胜感激。

    总之:

    2 TableViews两者都连接到 delegatedatasource2 定制 NIB用于每个 table 的单元格
    只有一个执行

    最佳答案

    添加NSLog(@"Table:%@", tableView)在第 204 行。
    看看它是否打印了两个不同的 tableView。
    并尝试用 if([tableView isEqual:self.tblFriendLocation]) 替换第 205 行

    关于ios - cellForRowAtIndexPath 未对来自 NIB 文件的所有自定义 View 单元执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36490879/

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