I\'d like to make a subclass of NSInputStream. Simply, I tried to code just like the following,
@interface SeekableInputStream : NSInputStream
{
NSUInteg
If you check out NSStream.h in the SDK, initWithURL
is defined not in the core class NSInputStream
but in a category called NSInputStreamExtensions
. I don't know much about calling methods defined in a category of a base class from an inherited class, but this definitely can be the cause of the visibility problem you experience.