TencentNavKit
TNKRedLineConfig.h
Go to the documentation of this file.
1//
2// TNKRedLineConfig.h
3// TencentNavKit
4//
5// Created by mol on 2022/12/22.
6// Copyright © 2022 Tencent. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import <UIKit/UIKit.h>
11
12NS_ASSUME_NONNULL_BEGIN
13
15@interface TNKRedLineConfig : NSObject
16
18@property (nonatomic, strong) UIColor *color;
19
21@property (nonatomic, assign) CGFloat width;
22
23@end
24
25NS_ASSUME_NONNULL_END
导航红线配置类
Definition: TNKRedLineConfig.h:16
CGFloat width
线宽度。默认为1
Definition: TNKRedLineConfig.h:21
UIColor * color
线颜色。默认为红色
Definition: TNKRedLineConfig.h:18