diff options
author | Starla Insigna <starla4444@gmail.com> | 2011-07-30 11:19:14 -0400 |
---|---|---|
committer | Starla Insigna <starla4444@gmail.com> | 2011-07-30 11:19:14 -0400 |
commit | 9cd57b731ab1c666d4a1cb725538fdc137763d12 (patch) | |
tree | 5bac45ae5157a1cb10c6e45500cbf72789917980 /libs/FontLabel/ZAttributedStringPrivate.h | |
download | cartcollect-9cd57b731ab1c666d4a1cb725538fdc137763d12.tar.gz cartcollect-9cd57b731ab1c666d4a1cb725538fdc137763d12.tar.bz2 cartcollect-9cd57b731ab1c666d4a1cb725538fdc137763d12.zip |
Initial commit (version 0.2.1)
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 | ||