[IOS] Crash : NSInternalInconsistencyException Reason: No view controller managing visible view
See original GitHub issueHappens only when tabs have long text that wraps around on a tab. and you click on tabs to navigate between them.
` var tabs = new List<TabItem>(){
new TabItem("Tab with a very long text 1", new Label{Text = "Tab 1", HorizontalOptions = LayoutOptions.FillAndExpand, VerticalOptions = LayoutOptions.FillAndExpand, BackgroundColor = Color.Red}),
new TabItem("Tab with a very long text 2", new Label{Text = "Tab 2", HorizontalOptions = LayoutOptions.FillAndExpand, VerticalOptions = LayoutOptions.FillAndExpand, BackgroundColor = Color.Green}),
new TabItem("Tab with a very long text 3", new Label{Text = "Tab 3", HorizontalOptions = LayoutOptions.FillAndExpand, VerticalOptions = LayoutOptions.FillAndExpand, BackgroundColor = Color.Blue}),
};
`
Issue Analytics
- State:
- Created 5 years ago
- Reactions:2
- Comments:5 (1 by maintainers)
Top Results From Across the Web
UIPageViewController and "No view controller managing ...
UIPageViewController and "No view controller managing visible view" ... The crash was caused by reset code being invoked from viewWillLayoutSubviews method of a ......
Read more >Assertion failure in UIPageViewController
with errors Assertion failure and Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'No view controller ...
Read more >[IOS] Crash : NSInternalInconsistencyException Reason ...
I was installed plugin. When I go to the page, back and go to new page (any page has a scrollview). It crash....
Read more >[Resolve]-Assertion failure in UIPageViewController
with errors Assertion failure and Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'No view controller managing visible ...
Read more >Ios – Assertion failure in UIPageViewController
with errors Assertion failure and Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'No view controller managing visible ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
With the new version, the tab header will be scrollable when the content width exceeds available width. This should fix the issue.
I have the same problem. Did you find any solution to that problem?