HugeTabBarButton 0.2

HugeTabBarButton 0.2

Marek Fort维护。



  • Marek Fort

HugeTabBarButton

CI Status Version License Carthage Compatible

HugeTabBarButton让您可以为您的UITabBarItem创建超大图像。

安装

CocoaPods

SwipeViewController可以通过CocoaPods获取。要安装它,只需将以下行添加到Podfile中:

pod 'HugeTabBarButton'

Carthage

如果您使用Carthage,请将以下内容添加到Cartfile中:

github "fortmarek/HugeTabBarButton"

它是如何工作的

实际上,要创建一个大图,只需创建一个类似于这样的UIViewController

let hugeTabBarItem = UITabBarItem()
hugeTabBarItem.image = UIImage(named: "HugeImage")
hugeTabBarItem.imageInsets = UIEdgeInsets(top: -20, left: 0, bottom: 20, right: 0)
hugeTabBarItem.title = "Huge"
tabBarViewController.tabBarItem = hugeTabBarItem

基本上您需要做的事情就是更改imageInsets,然后HugeTabBarButton就会在您的图像位置注册触碰。很简单!😎