gpt4 book ai didi

ios - 未调用 UITableView setter 方法函数

转载 作者:行者123 更新时间:2023-11-28 18:34:27 25 4
gpt4 key购买 nike

像这样的函数:

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
NSLog(@"called")
return 1;
}

没有被调用,因为日志没有出现在控制台上。我尝试使用

[table realoadData]

还是不行

最佳答案

确保将 UITableViewDataSource 和 UITableViewDelegate 都设置为该方法所在的类

.h 
@interface class_name : UIViewController <UITableViewDelegate, UITableViewDataSource>
{ UITableView *tableView; }

.m
in the viewDidLoad (or any other loading method)

tableView.delegate = self;
tableView.dataSource = self;

如果您继承了 UITableViewController,它应该已经可以工作了

希望对您有所帮助!

关于ios - 未调用 UITableView setter 方法函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21842581/

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