【发布时间】:2015-06-08 07:13:13
【问题描述】:
我已经使用 cocoapods 添加了 AFNetworking,我需要修改 UIActivityIndicatorView+AFNetworking.m 类别,更具体地说,我需要在我的项目中使用的自定义日志记录语句添加到 dealloc 方法的末尾。
- (void)dealloc {
NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter];
#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 70000
[notificationCenter removeObserver:self name:AFNetworkingTaskDidCompleteNotification object:nil];
[notificationCenter removeObserver:self name:AFNetworkingTaskDidResumeNotification object:nil];
[notificationCenter removeObserver:self name:AFNetworkingTaskDidSuspendNotification object:nil];
#endif
[notificationCenter removeObserver:self name:AFNetworkingOperationDidStartNotification object:nil];
[notificationCenter removeObserver:self name:AFNetworkingOperationDidFinishNotification object:nil];
}
是否可以调配/子类/修改/等这个 dealloc 方法?
【问题讨论】:
标签: ios objective-c cocoapods afnetworking-2