21 lines
319 B
Objective-C
21 lines
319 B
Objective-C
|
|
#import "ExpandedPathToPathTransformer.h"
|
|
|
|
@implementation ExpandedPathToPathTransformer
|
|
|
|
+ (Class) transformedValueClass
|
|
{
|
|
return [NSString class];
|
|
}
|
|
|
|
+ (BOOL) allowsReverseTransformation
|
|
{
|
|
return NO;
|
|
}
|
|
|
|
- (id) transformedValue: (id) value
|
|
{
|
|
return value == nil ? nil : [value lastPathComponent];
|
|
}
|
|
|
|
@end |