Sliding tab in Swift iOS app

I am developing an iOS application in Swift with the latest Xcode-Xcode 7 and would like to implement the "Sliding Tab" feature available for Android applications.

I also saw some iOS apps that have a sliding tab.

How to create a sliding tab in an iOS app?

+5
source share
1 answer

Well, there is a library called PagingMenuController on github that allows you to drop this and build what you want from this link: https://github.com/kitasuke/PagingMenuController . Or you can use the library you found for this. as I said, just upload their project and see how it works, then import it into your project.

You can download your library written by Swift and support for Swift 2 and IOS8+ .

Note. Try to keep track of user experience and what I mean here. IOS is different from android, I suggest you create a UITabbar . as an example: WhatsApp in android uses a presentation pager, but on iPhone it uses UITabbar .

+12
source

Source: https://habr.com/ru/post/1232707/


All Articles