gpt4 book ai didi

ios - 值未显示在 ios 的 TableView 中

转载 作者:行者123 更新时间:2023-11-28 21:49:06 25 4
gpt4 key购买 nike

我在 ViewController 中声明了一个数组并在 TableView 中显示它。我正在从 EditViewController 传递数组的值。但是这些值没有显示在 TableView 中。我正在使用以下代码。

ViewController.h

 @property (nonatomic, strong) NSMutableArray *tableData;

ViewController.m

ViewDidLoad:

   tableData = [NSMutableArray arrayWithObjects:@"",nil];

- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView
dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
cell.textLabel.text = [tableData objectAtIndex:indexPath.row];
return cell;
}

EditViewController.m

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
ViewController *vc;
vc = [segue destinationViewController];
NSString *str = [NSString stringWithFormat:@"%ld", selectedRow];
[vc.tableData addObject:str];
}

请指教。

最佳答案

在editViewController的viewDidLOad中将delegate和datasource连接到self

    tableView.delegete=self;
tableView.Datasource=self;

关于ios - 值未显示在 ios 的 TableView 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28979659/

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