我正在阅读 iOS 教程,我有一个 .h 和 .m 文件。在 .m 文件中,我编写了一些方法,例如 -
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 1;
}
或者,
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"ChecklistItem"];
return cell;
}
我不会在任何地方调用这些方法。尽管如此,输出在运行时会发生变化。如何?这些是压倒一切的方法吗?