ios UITabBarcontroller custom,如何实现如下tabbar architect
ios UITabBarcontroller custom , How can I achieve the following tabbar architect
iPad custom tabbar image iPhone custom tabbar image
iPhone => 如何在标签栏中添加虚线:按钮,打开更多选项
iPad => 如何将标签栏按钮添加到视图左侧
这应该是完全定制的。我会使用 UIStackView
并将其 direction
在 iPhone 上更改为 .horizontal
,在 iPad 上更改为 .vertical
。
圆点只是一个带有图像的按钮,您可以将其添加到 stackView。
iPad custom tabbar image iPhone custom tabbar image
iPhone => 如何在标签栏中添加虚线:按钮,打开更多选项
iPad => 如何将标签栏按钮添加到视图左侧
这应该是完全定制的。我会使用 UIStackView
并将其 direction
在 iPhone 上更改为 .horizontal
,在 iPad 上更改为 .vertical
。
圆点只是一个带有图像的按钮,您可以将其添加到 stackView。