Archived
1
This repository has been archived on 2022-08-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
mathpad/MathPad/NSObject+MPStringTest.m
Kim Wittenburg 1daec37a25 Added Expression Tree Inspection Methods
Cleaned Code
2014-04-20 23:28:17 +02:00

19 lines
306 B
Objective-C

//
// NSObject+MPStringTest.m
// MathPad
//
// Created by Kim Wittenburg on 20.04.14.
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
//
#import "NSObject+MPStringTest.h"
@implementation NSObject (MPStringTest)
- (BOOL)isString
{
return [self isKindOfClass:[NSString class]];
}
@end