Archived
1

Added Helper Categories

Added Documentation
This commit is contained in:
Kim Wittenburg
2014-04-23 03:09:26 +02:00
parent 027ef4271f
commit 24c53bde2e
5 changed files with 94 additions and 0 deletions

View File

@@ -10,6 +10,12 @@
@interface NSObject (MPStringTest)
/*!
@method isString
@brief Returns wether the receiver is a string object.
@discussion A string object is an instance of the @c NSString class or any of its subclasses (for example @c NSMutableString). For an @c NSAttributedString this method returns @c NO.
@return @c YES if the receiver is an instance of @c NSString or a subclass, @c NO otherwise.
*/
- (BOOL)isString;
@end