https://github.com/jkichline/ACFTP
本身有个错误
ACFTPPutRequest.h
212
[(NSObject*)self performSelector:@selector(request:didUpdateStatus:) withObject:self withObject:status];
应该是[(NSObject*)self.delegate performSelector:@selector(request:didUpdateStatus:) withObject:self withObject:status];
本文指出ACFTP项目中ACFTPPutRequest.h文件存在的错误,并提供正确的代码实现。原代码误使用自身作为消息接收者,应改为使用代理模式。

5471

被折叠的 条评论
为什么被折叠?



