gpt4 book ai didi

ios - UITableView 中没有出现项目

转载 作者:行者123 更新时间:2023-11-29 04:26:24 25 4
gpt4 key购买 nike

我有一个带有 UITableView 的简单应用程序即使应该出现,也没有出现任何项目。我忘记什么了...(我知道 cellForRowAtIndexPath 被调用)

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

return 1;
}

- (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];
}
[[cell textLabel] setText:@"terlala"];
return cell;
}

使用调用 TableView Controller

 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
self.window.backgroundColor = [UIColor whiteColor];
SillyTableViewController * CamerasViewController = [[SillyTableViewController alloc] init];
[[self window] addSubview:[CamerasViewController view]];
[self.window makeKeyAndVisible];
return YES;
}

最佳答案

检查标识符“Cell”是否在您的单元格属性检查器中

关于ios - UITableView 中没有出现项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12277900/

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