mirror of
https://github.com/wu736139669/ManagerDemo.git
synced 2026-08-05 05:55:42 +00:00
23 lines
468 B
Objective-C
23 lines
468 B
Objective-C
//
|
|
// DTHTMLElementBR.m
|
|
// DTCoreText
|
|
//
|
|
// Created by Oliver Drobnik on 26.12.12.
|
|
// Copyright (c) 2012 Drobnik.com. All rights reserved.
|
|
//
|
|
|
|
#import "DTBreakHTMLElement.h"
|
|
|
|
@implementation DTBreakHTMLElement
|
|
|
|
- (NSAttributedString *)attributedString
|
|
{
|
|
@synchronized(self)
|
|
{
|
|
NSDictionary *attributes = [self attributesForAttributedStringRepresentation];
|
|
return [[NSAttributedString alloc] initWithString:UNICODE_LINE_FEED attributes:attributes];
|
|
}
|
|
}
|
|
|
|
@end
|