好的,这可能是一个新手问题,但我需要帮助。我有一个 someview.m,其中有一个自定义单元格,它在 customCell.h 和 .m 中定义所以在 someview.mi
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
customCell *cell=[tableView dequeueReusableCellWithIdentifier:@"charCell"];
if (cell == nil || (![cell isKindOfClass: customCell.class]))
{
cell=[[customCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"charCell"];
}
return cell;
}
我也有方法
-(void) printStuff
{
NSLog(@"stuff");
}
现在自定义单元格工作正常,但我需要访问 printStuff 方法
- (BOOL)textFieldShouldReturn:(UITextField *)textField
在 customCell.m 中我尝试过类似的东西,[[self super] printStuff]
但我总是遇到错误......我希望我正确解释了这个问题