gpt4 book ai didi

ios - UITableView 中的几个单元格

转载 作者:行者123 更新时间:2023-11-29 03:33:34 25 4
gpt4 key购买 nike

我正在寻找如何创建多个单元格以转到不同的 ViewController。

对于我的 TableView,我使用的是 UITableViewController 的子类。

当我在下面的方法中选择 2 时,我只看到 2 个相同的单元格,它们在做完全相同的事情。我对此不感兴趣。我什至不知道他们的 IndexPath 才能更改他们的标题。

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return 2;
}

当我尝试在 TableView 中放置另一个 UITableViewCell 时,它不会出现在 iOS 模拟器上,即使使用与我的第一个 UITableViewCell 相同的选项(相同的子类) > 我可以看到。

感谢您的帮助。

编辑:这是我创建 2 个单元格的新代码,但不起作用:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell2";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[customCell alloc] init];

}

static NSString *CellIdentifier1 = @"Cell1";
UITableViewCell *cell1 = [tableView dequeueReusableCellWithIdentifier:CellIdentifier1];
if (cell1 == nil) {
cell1 = [[customCell alloc] init];

}
// Configure the cell...

return cell;
}

最佳答案

您在 tableView:cellForRowAtIndexPath: 中定义您的单元格,因此您应该提供该方法的实现。

tableView:numberOfRowsInSection: 仅返回表格中的单元格数。

如果您需要更多帮助,请提供您对 tableView:cellForRowAtIndexPath: 的实现。这是典型实现的样子:

 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";

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

... customize your cell ...
}

编辑:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell2";
static NSString *CellIdentifier1 = @"Cell1";

if(indexPath.row == 0 ) {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[customCell alloc] init];

}
} else {

UITableViewCell *cell1 = [tableView dequeueReusableCellWithIdentifier:CellIdentifier1];
if (cell1 == nil) {
cell1 = [[customCell alloc] init];
}
}
return cell;
}

关于ios - UITableView 中的几个单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19468204/

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