我正在閱讀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;
}
我沒有在任何地方調用這些方法。不過,輸出在運行時會發生變化。怎麼樣?這些壓倒一切的方法是什麼?
是的,那是我的問題 – onlinenaman