20 lines
346 B
Objective-C
20 lines
346 B
Objective-C
//
|
|
// UIFont+AttributedStringBuilder.h
|
|
// ElementX
|
|
//
|
|
// Created by Stefan Ceriu on 23/03/2022.
|
|
// Copyright © 2022 Element. All rights reserved.
|
|
//
|
|
|
|
@import UIKit;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface UIFont(DTCoreTextFix)
|
|
|
|
// Fix DTCoreText iOS 13 issue (https://github.com/Cocoanetics/DTCoreText/issues/1168)
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|