Files
yinmeng-ios/xplan-ios/Main/ModuleKit/FaceView/View/Cell/XCGameRoomFaceTitleButton.h
2022-03-10 18:55:18 +08:00

38 lines
814 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// XCGameRoomFaceTitleButton.h
// AFNetworking
//
// Created by lvjunhang on 2018/11/27.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface XCGameRoomFaceTitleButton : UIButton
/**
标题
*/
@property (nonatomic, copy) NSString *title;
/**
默认标题颜色,默认:[UIColor colorWithWhite:1 alpha:0.4]
*/
@property (nonatomic, strong) UIColor *normalTitleColor;
/**
选中标题颜色,默认:[UIColor colorWithWhite:1 alpha:1]
*/
@property (nonatomic, strong) UIColor *selectTitleColor;
/**
下划线颜色,默认:[UIColor colorWithWhite:1 alpha:0.4]
*/
@property (nonatomic, strong) UIColor *underlineColor;
/**
是否显示下划线默认NO
*/
@property (nonatomic, assign) BOOL isShowUnderline;
@end
NS_ASSUME_NONNULL_END