29 lines
551 B
Objective-C
29 lines
551 B
Objective-C
|
|
|
|
// Created by lee on 2019/5/21.
|
|
// Copyright © 2023 YUMI. All rights reserved.
|
|
|
|
|
|
#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
|