18 lines
491 B
Swift
18 lines
491 B
Swift
//
|
|
// JXSegmentedTitleBaseDataSource.swift
|
|
// JXSegmentedView
|
|
//
|
|
// Created by Jiaxin Pu on 2024/4/16.
|
|
// Copyright © 2024 jiaxin. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
public protocol JXSegmentedTitleDynamicConfiguration {
|
|
func titleNumberOfLines(at index: Int) -> Int
|
|
func titleNormalColor(at index: Int) -> UIColor
|
|
func titleSelectedColor(at index: Int) -> UIColor
|
|
func titleNormalFont(at index: Int) -> UIFont
|
|
func titleSelectedFont(at index: Int) -> UIFont?
|
|
}
|