Re: unrecognized selector sent to instance
Re: unrecognized selector sent to instance
- Subject: Re: unrecognized selector sent to instance
- From: Bill Bumgarner <email@hidden>
- Date: Wed, 15 Apr 2009 08:36:29 -0700
On Apr 15, 2009, at 8:12 AM, BJ Homer wrote:
Seems to be concrete to me. Nevertheless, calling it on super does
throw an
exception; you might just try calling [super init] and see what
happens.
// NSOutputStream is an abstract class representing the base
functionality of a write stream.
// Subclassers are required to implement these methods.
@interface NSOutputStream : NSStream
- (NSInteger)write:(const uint8_t *)buffer maxLength:(NSUInteger)len;
// writes the bytes from the specified buffer to the stream up to
len bytes. Returns the number of bytes actually written.
- (BOOL)hasSpaceAvailable;
// returns YES if the stream can be written to or if it is
impossible to tell without actually doing the write.
@end
b.bum
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden