diff options
Diffstat (limited to 'libs/FontLabel/ZAttributedStringPrivate.h')
-rwxr-xr-x | libs/FontLabel/ZAttributedStringPrivate.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/libs/FontLabel/ZAttributedStringPrivate.h b/libs/FontLabel/ZAttributedStringPrivate.h new file mode 100755 index 0000000..1021d7b --- /dev/null +++ b/libs/FontLabel/ZAttributedStringPrivate.h | |||
@@ -0,0 +1,24 @@ | |||
1 | // | ||
2 | // ZAttributedStringPrivate.h | ||
3 | // FontLabel | ||
4 | // | ||
5 | // Created by Kevin Ballard on 9/23/09. | ||
6 | // Copyright 2009 Zynga Game Networks. All rights reserved. | ||
7 | // | ||
8 | |||
9 | #import <Foundation/Foundation.h> | ||
10 | #import "ZAttributedString.h" | ||
11 | |||
12 | @interface ZAttributeRun : NSObject <NSCopying, NSCoding> { | ||
13 | NSUInteger _index; | ||
14 | NSMutableDictionary *_attributes; | ||
15 | } | ||
16 | @property (nonatomic, readonly) NSUInteger index; | ||
17 | @property (nonatomic, readonly) NSMutableDictionary *attributes; | ||
18 | + (id)attributeRunWithIndex:(NSUInteger)idx attributes:(NSDictionary *)attrs; | ||
19 | - (id)initWithIndex:(NSUInteger)idx attributes:(NSDictionary *)attrs; | ||
20 | @end | ||
21 | |||
22 | @interface ZAttributedString (ZAttributedStringPrivate) | ||
23 | @property (nonatomic, readonly) NSArray *attributes; | ||
24 | @end | ||