blob: f3b0823af4d48e7476682d87b9fcd7fdf66af072 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//
// NSAttributedString+Moxie.h
// Moxie
//
// Created by Brian Cully on Tue Aug 24 2004.
// Copyright (c) 2004 Brian Cully. All rights reserved.
//
@interface NSAttributedString (Moxie)
+ (id)attributedStringWithString: (NSString *)aString;
+ (id)attributedStringWithString: (NSString *)aString
attributes: (NSDictionary *)attributes;
+ (NSAttributedString *)attributedStringWithForm: (NSArray *)aForm
defaultAttributes: (NSDictionary *)defaultAttributes;
@end
|