{"id":2817,"url":"https://github.com/SimformSolutionsPvtLtd/SSCustomTabMenu","last_synced_at":"2025-08-03T12:31:18.541Z","repository":{"id":49752476,"uuid":"115393138","full_name":"SimformSolutionsPvtLtd/SSCustomTabMenu","owner":"SimformSolutionsPvtLtd","description":"Customisable iOS bottom menu works like Tabbar","archived":false,"fork":false,"pushed_at":"2018-01-20T10:16:47.000Z","size":14146,"stargazers_count":79,"open_issues_count":0,"forks_count":13,"subscribers_count":7,"default_branch":"master","last_synced_at":"2024-05-29T04:52:46.410Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SimformSolutionsPvtLtd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-12-26T06:33:29.000Z","updated_at":"2023-09-30T21:59:29.000Z","dependencies_parsed_at":"2022-08-21T04:50:06.846Z","dependency_job_id":null,"html_url":"https://github.com/SimformSolutionsPvtLtd/SSCustomTabMenu","commit_stats":null,"previous_names":["simformsolutions/sscustomtabmenu"],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SimformSolutionsPvtLtd%2FSSCustomTabMenu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SimformSolutionsPvtLtd%2FSSCustomTabMenu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SimformSolutionsPvtLtd%2FSSCustomTabMenu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SimformSolutionsPvtLtd%2FSSCustomTabMenu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SimformSolutionsPvtLtd","download_url":"https://codeload.github.com/SimformSolutionsPvtLtd/SSCustomTabMenu/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228543145,"owners_count":17934432,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-01-05T20:16:23.625Z","updated_at":"2024-12-07T00:30:58.433Z","avatar_url":"https://github.com/SimformSolutionsPvtLtd.png","language":"Swift","funding_links":[],"categories":["UI","iOS","iOS Guides"],"sub_categories":["Tab Bar","Swift"],"readme":"# SSCustomTabMenu\n\u003e Simple customizable iOS bottom menu works like Tabbar, in Swift.\n\n[![Swift Version][swift-image]][swift-url]\n[![Build Status][travis-image]][travis-url]\n[![License][license-image]][license-url]\n[![CocoaPods Compatible][cocoa-image]][cocoa-url]\n[![Platform][platform-image]][platform-url]\n[![PRs Welcome][PR-image]][PR-url]\n\n![Alt text](https://raw.githubusercontent.com/simformsolutions/SSCustomTabMenu/master/customTab.gif?raw=true)\n## Features\n\n- [x]  Simple and customizable iOS Tab Menu items, in Swift.\n\n## Requirements\n\n- iOS 9.0+\n- Xcode 9.0\n\n## Installation\n\n#### CocoaPods\nYou can use [CocoaPods](https://cocoapods.org/) to install `SSCustomTabMenu` by adding it to your `Podfile`:\n\n```ruby\nplatform :ios, '9.0'\nuse_frameworks!\npod 'SSCustomTabMenu'\n```\n\nTo get the full benefits import `YourLibrary` wherever you import UIKit\n\n``` swift\nimport UIKit\nimport SSCustomTabMenu\n```\n\n#### Manually\n1. Download and drop ```CustomTabMenu```  in your project.\n2. Congratulations!\n\n## Usage example\n### Into your Appdelegate\n``` swift\nimport SSCustomTabMenu\n```\n### and add below two lines\n``` swift\nlet MyDelegate = UIApplication.shared.delegate as! AppDelegate\nvar navController:UINavigationController!\n```\n#### Add below code into didFinishLaunchingWithOptions\n\n#### Initiate your controller\n``` swift\nlet homeVC        = storyBoard.MainStoryboard?.instantiateViewController(withIdentifier: \"HomeVC\")\nlet musicVC       = storyBoard.MainStoryboard?.instantiateViewController(withIdentifier: \"MusicVC\")\nlet profileVC     = storyBoard.MainStoryboard?.instantiateViewController(withIdentifier: \"ProfileVC\")\nlet eventsVC      = storyBoard.MainStoryboard?.instantiateViewController(withIdentifier: \"EventsVC\")\nlet artistsVC     = storyBoard.MainStoryboard?.instantiateViewController(withIdentifier: \"ArtistsVC\")\nlet fanFinderVC   = storyBoard.MainStoryboard?.instantiateViewController(withIdentifier: \"FanFinderVC\")\n```\n#### Initiate TabMenuVC\n``` swift\nlet tabController = UIStoryboard.TabMenuStoryboard.instantiateViewController(withIdentifier: \"TabMenuVC\") as! TabMenuVC\n```\n#### Set Menu Items with Title and image name\n``` swift\ntabController.arrMenuItems[1] = MenuItem(viewControllerforMenu:Krewes, imageName: \"Home\",          menuItemTitle: \"HOME\")\ntabController.arrMenuItems[2] = MenuItem(viewControllerforMenu:Krewes, imageName: \"Krews\",         menuItemTitle: \"KREWS\")\ntabController.arrMenuItems[3] = MenuItem(viewControllerforMenu:Krewes, imageName: \"Profile\",       menuItemTitle: \"PROFILE\")\ntabController.arrMenuItems[4] = MenuItem(viewControllerforMenu:Krewes, imageName: \"Events\",        menuItemTitle: \"EVENTS\")\ntabController.arrMenuItems[5] = MenuItem(viewControllerforMenu:Krewes, imageName: \"Artists\",       menuItemTitle: \"ARTISTS\")\ntabController.arrMenuItems[6] = MenuItem(viewControllerforMenu:Krewes, imageName: \"Fan Finder\",    menuItemTitle: \"FAN FINDER\")\n```\n#### Add Center and Right TabBarItem\n``` swift\ntabController.centerTab = plusVC\ntabController.RightTab  = musicVC\n```\n#### Add tabController as rootViewController\n``` swift\nself.window!.rootViewController = tabController\n```\n\n## Contribute\n\nWe would love you for the contribution to SSCustomTabMenu, check the LICENSE file for more info.\n\n## Meta\n\nDistributed under the MIT license. See ``LICENSE`` for more information.\n\n[https://github.com/simformsolutions/SSCustomTabMenu](https://github.com/simformsolutions)\n\n[swift-image]:https://img.shields.io/badge/swift-3.0-orange.svg\n[swift-url]: https://swift.org/\n[license-image]: https://img.shields.io/badge/License-MIT-blue.svg\n[license-url]: LICENSE\n[travis-image]: https://img.shields.io/travis/dbader/node-datadog-metrics/master.svg?style=flat-square\n[travis-url]: https://travis-ci.org/dbader/node-datadog-metrics\n[codebeat-image]: https://codebeat.co/assets/svg/badges/C-ffb83f-7198e9a1b7ad7f73977b0c9a5c7c3fffbfa25f262510e5681fd8f5a3188216b0.svg\n[codebeat-url]: https://codebeat.co/projects/github-com-vsouza-awesomeios-com\n[platform-image]:https://img.shields.io/cocoapods/p/LFAlertController.svg?style=flat\n[platform-url]:http://cocoapods.org/pods/LFAlertController\n[cocoa-image]:https://img.shields.io/cocoapods/v/EZSwiftExtensions.svg\n[cocoa-url]:https://img.shields.io/cocoapods/v/LFAlertController.svg\n[PR-image]:https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square\n[PR-url]:http://makeapullrequest.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSimformSolutionsPvtLtd%2FSSCustomTabMenu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FSimformSolutionsPvtLtd%2FSSCustomTabMenu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSimformSolutionsPvtLtd%2FSSCustomTabMenu/lists"}