Music_Player3/Pods/JXSegmentedView/Sources/Title/JXSegmentedTitleDynamicConfiguration.swift
2024-05-14 15:04:59 +08:00

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?
}