开发者

Why does this line indefinitely repeat?

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    UITableViewCellFixed *cell = (UITableViewCellFixed *)[tableView cellForRowAtIndexPath:indexPath];

the second line (ie: the first line after the function is declared) is repeating itself indefinitely. I have no idea why.

I got a stack overload when I was running the script, and when I put a breakpoint on this line and subsequent lines in the same 开发者_运维问答method this line just continuously repeats and the breakpoints never move onto the next one.

I have no idea why this is, but this is my first time trying to subclass a UITextViewCell, so I'm assuming I've done something wrong?

Thanks Tom


When you ask your table for a cell, the table itself calls heightForRowAtIndexPath to be able to display the cell in correct height.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜