gpt4 book ai didi

iphone - tableView 属性导致循环

转载 作者:行者123 更新时间:2023-12-03 17:39:31 25 4
gpt4 key购买 nike

我有一个 UITableViewController 的子类,当我在 viewDidLoad 中调用 self.tableView 时,它会崩溃并继续调用相同的方法。我已经将它从使用 Storyboard(工作正常)转移到只是代码,现在它出现了这个错误。我有一个带有 UITableViewCell 子类的 xib 文件。

- (void)viewDidLoad
{
[super viewDidLoad];

UINib *nib = [UINib nibWithNibName:@"AddCell" bundle:nil];

//here
[self.tableView registerNib:nib forCellReuseIdentifier:@"AddCell"];

self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCancel target:self action:@selector(cancel:)];
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(done:)];

// Uncomment the following line to preserve selection between presentations.
// self.clearsSelectionOnViewWillAppear = NO;

// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
// self.navigationItem.rightBarButtonItem = self.editButtonItem;
}

想知道有没有人遇到同样的问题或者有没有解决办法。

提前致谢

最佳答案

似乎包含上述 -viewDidLoad 实现的类已经拥有 nib。这意味着每次它醒来时,它都会继续自己醒来......

...然后唤醒自己,然后唤醒自己,然后唤醒自己,然后唤醒自己,然后唤醒自己,然后唤醒自己,然后唤醒自己,然后唤醒自己,然后唤醒自己,然后唤醒自己唤醒自己,然后唤醒自己,然后唤醒自己,然后唤醒自己,然后唤醒自己,然后唤醒自己,然后唤醒自己,然后唤醒自己,然后唤醒自己,............ ...

这可能是你的问题吗?

关于iphone - tableView 属性导致循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14404486/

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