“Unbalanced calls to begin/end appearance transitions” warning when push a view in a modal way in XCode 4 with Storyboard

前端 未结 4 1873
没有蜡笔的小新
没有蜡笔的小新 2020-12-03 10:28

After some research on the web without success, I come here to ask you the question about my warning.

Actually, I have a view V1 with a navigation controller and I w

4条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-03 10:53

    It sounds like you may be performing the segue in -viewWillAppear: thus generating two -viewWillAppear: messages without 2 corresponding -viewDidAppear messages.

    Try performing the segue in -viewDidAppear.

提交回复
热议问题