
- Removed YuMi/Library/ (138 MB, not tracked) - Removed YuMi/Resources/ (23 MB, not tracked) - Removed old version assets (566 files, not tracked) - Excluded Pods/, xcuserdata/ and other build artifacts - Clean repository optimized for company server deployment
31 lines
762 B
Objective-C
31 lines
762 B
Objective-C
//
|
|
// TTAlertButtonConfig.h
|
|
// YM_TTChatViewKit
|
|
//
|
|
// Created by lee on 2019/5/21.
|
|
// Copyright © 2023 YUMI. All rights reserved.
|
|
// alert 按钮配置
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface TTAlertButtonConfig : NSObject
|
|
/** 按钮标题 */
|
|
@property (nonatomic, copy) NSString *title;
|
|
/** 按钮字体 */
|
|
@property (nonatomic, strong) UIFont *font;
|
|
/** 按钮字体颜色 */
|
|
@property (nonatomic, strong) UIColor *titleColor;
|
|
/** 背景色 */
|
|
@property (nonatomic, strong) UIColor *backgroundColor;
|
|
/** 背景图 */
|
|
@property (nonatomic, strong) UIImage *backgroundImage;
|
|
/** 圆角 */
|
|
@property (nonatomic, assign) CGFloat cornerRadius;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|