mirror of
https://github.com/wu736139669/ManagerDemo.git
synced 2026-08-05 05:55:42 +00:00
29 lines
594 B
Objective-C
29 lines
594 B
Objective-C
//
|
|
// DTTextBlock.h
|
|
// DTCoreText
|
|
//
|
|
// Created by Oliver Drobnik on 04.03.12.
|
|
// Copyright (c) 2012 Drobnik.com. All rights reserved.
|
|
//
|
|
|
|
#import "DTCompatibility.h"
|
|
|
|
/**
|
|
Class that represents a block of text with attributes like padding or a background color.
|
|
*/
|
|
@interface DTTextBlock : NSObject <NSCoding>
|
|
|
|
/**
|
|
The space to be applied between the layouted text and the edges of the receiver
|
|
*/
|
|
@property (nonatomic, assign) DTEdgeInsets padding;
|
|
|
|
|
|
/**
|
|
The background color to paint behind the text in the receiver
|
|
*/
|
|
@property (nonatomic, strong) DTColor *backgroundColor;
|
|
|
|
|
|
@end
|