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;
}
これらのメソッドはどこでも呼び出していません。それでも、実行時に出力が変化します。どのように?これらはメソッドをオーバーライドしていますか?