Cell animation stop fraction must be greater than start fraction

前端 未结 10 1310
梦毁少年i
梦毁少年i 2020-12-24 06:12

I m using Animation in table view cell...Animation is working fine when cell is totally visible.if any cell is partially visible at that time due to Animation my app is gett

相关标签:
10条回答
  • 2020-12-24 07:01

    This is a bug in iOS. I filed a bug report and they came back saying its a duplicate of 14898413. This bug is still marked as open in apple bug reporter.

    Options for fixes: 1) Remove footer 2) Instead of deleting rows, begin and end updates reload the table

    0 讨论(0)
  • 2020-12-24 07:02

    it seems to happen when set tableview

    -(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
    
    -(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
    

    while tableview style set Plain instead of Grouped style

    0 讨论(0)
  • 2020-12-24 07:04

    Yes i also face this type of problem,do one thing just remove footer view.

    0 讨论(0)
  • 2020-12-24 07:05

    For people experienced this issue after iOS 7 updates: Check the view frame of the section footer view. If it overlaps with the tableview cell. System throws this exception.

    0 讨论(0)
提交回复
热议问题