19 lines
306 B
Objective-C
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
|