gpt4 book ai didi

ios - 自定义 UitableView 在 Xcode 中不起作用

转载 作者:行者123 更新时间:2023-11-29 12:09:02 24 4
gpt4 key购买 nike

我是 ios 开发的新手,我只是在学习带有自定义表格单元格的 tableview,我使用 Storyboard来制作 ui 元素和自定义单元格,我已经制作了一个 xib 文件,我已经提到了。 Custom tableview i ios

我已经完成了每一步,但我不知道缺少什么,我收到以下错误。

2015-12-03 16:52:48.336 MyFirstApp[4997:176795] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<netcluesvideosViewController 0x7a05a6b0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key nameLabel.'

我正在发布我的代码,请帮忙,

net.h

导入

@interface netcluesvideosViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>
{
NSArray *tabledata;
IBOutlet UITableView *tableView;
}
@end

net.m

.
.
.
.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier = @"NetCell";

NetCell *cell = (NetCell *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"NetCell" owner:self options:nil];
cell = [nib objectAtIndex:0];
}

.
.
.
.

NetCell 是我的自定义单元类。

最佳答案

您必须在 nameLabel 的界面构建器中删除 IBOutlet,或添加

@property (weak, nonatomic) IBOutlet UILabel *nameLabel;

到您的 View Controller 子类。

关于ios - 自定义 UitableView 在 Xcode 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34064887/

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