DZWebDAVClient icon indicating copy to clipboard operation
DZWebDAVClient copied to clipboard

Missing methods and properties

Open lcmoba opened this issue 10 years ago • 0 comments

Hi, there are a few methods and properties missing.

For example in "DZWebDAVClient" it's missing alot of methods

- (id)initWithBaseURL:(NSURL *)url {
    if ((self = [super initWithBaseURL:url])) {
        self.fileManager = [NSFileManager new];
        [self registerHTTPOperationClass: [DZDictionaryRequestOperation class]];
    }
    return self;
}

[self registerHTTPOperationClass: [DZDictionaryRequestOperation class]]; -- "registerHTTPOperationClass" this method is missing

Other case is in class DZDictionaryRequestOperation

[DZXMLReader dictionaryForXMLParser: self.responseXMLParser error: &error];

self.responseXMLParser -- it's missing too.

The project need some updates. AFNetworking had some updates/changes and your project need to be update as well.

lcmoba avatar Aug 05 '14 11:08 lcmoba