UIPageViewController transition 'Unbalanced calls to begin/end appearance transitions for '

前端 未结 10 1660
一生所求
一生所求 2021-02-01 20:10

When I navigate through UIPageViewController faster than its transition animation I am getting \'Unbalanced calls to begin/end appearance transitions for <

10条回答
  •  不要未来只要你来
    2021-02-01 21:03

    I had to add it to viewDidAppear: to make it work

        - (void)viewDidAppear:(BOOL)animated
    {
        [super viewDidAppear:animated];
        self.pageAnimationFinished = YES;
    }
    

提交回复
热议问题