ios 11 UITabBar UITabBarItem positioning issue

前端 未结 7 1476
清酒与你
清酒与你 2020-12-02 13:03

I have built my app using new Xcode 9 beta for ios 11. I have found an issue with UITabBar where items are spread through the UITabBar and title is right aligned to the imag

7条回答
  •  遥遥无期
    2020-12-02 13:47

    To avoid messing up any other traits is it not better to combine with the superclasses:

    - (UITraitCollection *)traitCollection
    {
      UITraitCollection *curr = [super traitCollection];
      UITraitCollection *compact = [UITraitCollection  traitCollectionWithHorizontalSizeClass:UIUserInterfaceSizeClassCompact];
    
      return [UITraitCollection traitCollectionWithTraitsFromCollections:@[curr, compact]];
    }
    

提交回复
热议问题