mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-01-28 00:31:20 +00:00
14 lines
525 B
C
14 lines
525 B
C
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
@interface AttributesFormatter : NSFormatter
|
||
|
{
|
||
|
}
|
||
|
|
||
|
- (NSString *)stringForObjectValue:(id)obj;
|
||
|
- (NSAttributedString *)attributedStringForObjectValue:(id)obj withDefaultAttributes:(NSDictionary *)attrs;
|
||
|
- (NSString *)editingStringForObjectValue:(id)obj;
|
||
|
- (BOOL)getObjectValue:(id *)obj forString:(NSString *)string errorDescription:(NSString **)error;
|
||
|
- (BOOL)isPartialStringValid:(NSString *)partialString newEditingString:(NSString **)newString errorDescription:(NSString **)error;
|
||
|
|
||
|
@end
|