[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
NSString subclass responsibility
From: |
Boris D. |
Subject: |
NSString subclass responsibility |
Date: |
Sat, 23 Mar 2024 12:03:34 -0700 |
User-agent: |
Mozilla Thunderbird |
Hello,
In NSString.m, -length is defined as follows:
- (NSUInteger) length
{
[self subclassResponsibility: _cmd];
return 0;
}
My code links with the gnustep-base library but is not compiled from
Objective-C source. Am I supposed to use a subclass of NSString instead
of NSString directly? Which class provides this implementation?
- NSString subclass responsibility,
Boris D. <=