Created
January 16, 2022 10:52
-
-
Save AshineRong/b1686d1252a85b4e804eaa6b5afe73f4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //调整tabBarItem的image和title位置 | |
| self.tabBarItem.titlePositionAdjustment = UIOffset(horizontal: 0, vertical: y) | |
| self.tabBarItem.imageInsets = UIEdgeInsets(top: x, left: 0, bottom: w, right: 0) | |
| // 这里y为0时即系统title位置,y小于0时title上移,image上移时x小于0,x与w为相反数,image位置才会显示在中间。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment