// // MCDatePikerDelegate.swift // HCQuanfangtong // // Created by Apple on 2022/5/7. // Copyright © 2022 Jyp. All rights reserved. // import Foundation import UIKit protocol MCDatePikerStyleDelegate{ //MARK: - pikerView 相关 func delegateForPikerBackgroundColor() -> UIColor func delegateForPikerHeight() -> CGFloat func delegateForPikerRowHeight() -> CGFloat func delegateForPikerTitleColor() -> UIColor func delegateForPikerTitleFont() -> UIFont func delegateForPikerTitleDisableColor() -> UIColor func delegateForPikerTitleDisableFont() -> UIFont func delegateForPikerViewBottomSpace() -> CGFloat func delegateForPikerContentWidth() -> CGFloat //MARK: - tool bar 相关 func delegateForToolBarHeight() -> CGFloat func delegateForCancelTitle() -> String func delegateForCancelTitleColor() -> UIColor func delegateForCancelTitleFont() -> UIFont func delegateForCancelBackgroundColor() -> UIColor func delegateForOKTitle() -> String func delegateForOKTitleColor() -> UIColor func delegateForOKTitleFont() -> UIFont func delegateForOKBackgroundColor() -> UIColor func delegateForToolBarBackgroundColor() -> UIColor func delegateForToolBarItemWidth() -> CGFloat func delegateForToolBarItemMarginLeftSpace() -> CGFloat func delegateForToolBarItemMarginTopSpace() -> CGFloat }