- August 22, 2025
- Mins Read
TabPageViewController is paging view controller and scroll tab view.
Infinity Mode
Limited Mode
Use TabPageOption
fontSize: CGFloat
currentColor: UIColor
defaultColor: UIColor
tabHeight: CGFloat
tabMargin: CGFloat
tabBackgroundColor: UIColor
currentBarHeight: CGFloat
pageBackgoundColor: UIColor
isTranslucent: Bool
hidesTabBarOnSwipe: Bool
import TabPageViewController
to use TabPageViewController in your file.
let tabPageViewController = TabPageViewController.create()
let vc1 = UIViewController()
let vc2 = UIViewController()
tabPageViewController.tabItems = [(vc1, “First”), (vc2, “Second”)]
TabPageOption.currentColor = UIColor.redColor()
Infinity Mode
let tabPageViewController = TabPageViewController.create()
tabPageViewController.isInfinity = true
iOS13+
use_frameworks!
pod “TabPageViewController”
github “EndouMari/TabPageViewController”
Copy all the files in Pod/Classes
directory into your project.
A SwiftUI Marquee or "scrolling text" effect found in Apple native apps. For when one line isn't enough, but two ...
Introduction Text composition in SwiftUI can often be cumbersome, especially when there's logic affecting its format and content. TextBuilder leverages the ...