how to customize tab position in xamarin ios

2019-09-17 11:43发布

问题:

I have gone through with this link xamarin tabs link for applying the tabs in my xamarin IOS application. and tabs has been successfully applied but i need this tabs should appear on the top of the application's header part.but I have not found any method or property for adjusts the tabs position. So Please help me , and any help will be appreciated.

回答1:

Apples Human Interface Guidelines specify that a Tab Bar should always appear at the bottom edge of the screen.



回答2:

You can try adding a UIToolbar instead of UITabBar, you can position it at design time at the desired location, and add UIButton or any other UIBarItems.

Hope this helps.