Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AshineRong/b1686d1252a85b4e804eaa6b5afe73f4 to your computer and use it in GitHub Desktop.
Save AshineRong/b1686d1252a85b4e804eaa6b5afe73f4 to your computer and use it in GitHub Desktop.
//调整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