51 lines
1.4 KiB
Objective-C
51 lines
1.4 KiB
Objective-C
//
|
|
// YYText.h
|
|
// YYText <https://github.com/ibireme/YYText>
|
|
//
|
|
// Created by ibireme on 15/2/25.
|
|
// Copyright (c) 2015 ibireme.
|
|
//
|
|
// This source code is licensed under the MIT-style license found in the
|
|
// LICENSE file in the root directory of this source tree.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#if __has_include(<YYText/YYText.h>)
|
|
FOUNDATION_EXPORT double YYTextVersionNumber;
|
|
FOUNDATION_EXPORT const unsigned char YYTextVersionString[];
|
|
#import <YYText/YYLabel.h>
|
|
#import <YYText/YYTextView.h>
|
|
#import <YYText/YYTextAttribute.h>
|
|
#import <YYText/YYTextArchiver.h>
|
|
#import <YYText/YYTextParser.h>
|
|
#import <YYText/YYTextRunDelegate.h>
|
|
#import <YYText/YYTextRubyAnnotation.h>
|
|
#import <YYText/YYTextLayout.h>
|
|
#import <YYText/YYTextLine.h>
|
|
#import <YYText/YYTextInput.h>
|
|
#import <YYText/YYTextDebugOption.h>
|
|
#import <YYText/YYTextKeyboardManager.h>
|
|
#import <YYText/YYTextUtilities.h>
|
|
#import <YYText/NSAttributedString+YYText.h>
|
|
#import <YYText/NSParagraphStyle+YYText.h>
|
|
#import <YYText/UIPasteboard+YYText.h>
|
|
#else
|
|
#import "YYLabel.h"
|
|
#import "YYTextView.h"
|
|
#import "YYTextAttribute.h"
|
|
#import "YYTextArchiver.h"
|
|
#import "YYTextParser.h"
|
|
#import "YYTextRunDelegate.h"
|
|
#import "YYTextRubyAnnotation.h"
|
|
#import "YYTextLayout.h"
|
|
#import "YYTextLine.h"
|
|
#import "YYTextInput.h"
|
|
#import "YYTextDebugOption.h"
|
|
#import "YYTextKeyboardManager.h"
|
|
#import "YYTextUtilities.h"
|
|
#import "NSAttributedString+YYText.h"
|
|
#import "NSParagraphStyle+YYText.h"
|
|
#import "UIPasteboard+YYText.h"
|
|
#endif
|