gpt4 book ai didi

objective-c - 没有 UITableViewController 代码的 UITableView 不工作

转载 作者:行者123 更新时间:2023-11-28 22:50:53 25 4
gpt4 key购买 nike

我在普通的 UIViewController 中使用了以下代码和一些其他内容, TableView 位于 View 的底部:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
// Return the number of sections.
return 1;
}

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

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

// Configure the cell...
NSString *cellValue = [names objectAtIndex:indexPath.row];
cell.textLabel.text = cellValue;

return cell;
}

还有一个名为 names 的 NSMutableArray(有 4 个对象)

最佳答案

你需要设置 TableView 的data sourcedelegate到您的 UIViewController,并为这两种协议(protocol)实现所需的方法。

关于objective-c - 没有 UITableViewController 代码的 UITableView 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12028358/

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