Important:
NSURLClient
is deprecated in Mac OS X v10.4 and later. Applications that are intended for deployment on Mac OS X v10.3 or later should use NSURLConnection
or NSURLDownload
instead; see URL Loading System.
A method identified as deprecated has been superseded and may become unsupported in the future.
Notifies the URL client that the URL has loaded new data. (Deprecated in Mac OS X v10.4 and later.)
- (void)URL:(NSURL *)sender resourceDataDidBecomeAvailable:(NSData *)newBytes
The URL that has loaded new data.
The newly loaded data.
NSURL.h
Notifies the URL client that the URL failed to load its resource data. (Deprecated in Mac OS X v10.4 and later.)
- (void)URL:(NSURL *)sender resourceDidFailLoadingWithReason:(NSString *)reason
The URL that failed to load its resource data.
The reason the load failed.
NSURL.h
Notifies the URL client that the URL stopped loading its resource data because loading was canceled. (Deprecated in Mac OS X v10.4 and later.)
- (void)URLResourceDidCancelLoading:(NSURL *)sender
The URL that stopped loading its resource data because loading was canceled.
NSURL.h
Notifies the URL client that the URL has finished loading its resource data. (Deprecated in Mac OS X v10.4 and later.)
- (void)URLResourceDidFinishLoading:(NSURL *)sender
The URL that has finished loading its resource data.
NSURL.h
© 2006 Apple Computer, Inc. All Rights Reserved. (Last updated: 2006-08-01)