mirror of
https://github.com/wu736139669/ManagerDemo.git
synced 2026-08-05 05:55:42 +00:00
27 lines
454 B
Objective-C
27 lines
454 B
Objective-C
//
|
|
// DTHTMLElementStylesheet.m
|
|
// DTCoreText
|
|
//
|
|
// Created by Oliver Drobnik on 29.12.12.
|
|
// Copyright (c) 2012 Drobnik.com. All rights reserved.
|
|
//
|
|
|
|
#import "DTStylesheetHTMLElement.h"
|
|
#import "DTCSSStylesheet.h"
|
|
|
|
@implementation DTStylesheetHTMLElement
|
|
|
|
- (NSAttributedString *)attributedString
|
|
{
|
|
return nil;
|
|
}
|
|
|
|
- (DTCSSStylesheet *)stylesheet
|
|
{
|
|
NSString *text = [self text];
|
|
|
|
return [[DTCSSStylesheet alloc] initWithStyleBlock:text];
|
|
}
|
|
|
|
@end
|