- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在摆弄一个小型 Swift 应用程序。在其中,用户可以通过单击应用程序菜单中的“新建”来创建任意数量的 MainWindow 实例。
应用程序委托(delegate)保存一个类型为MainWindowController的数组。监 window 口中的 NSWindowWillCloseNotification,以便从 MainWindowController 数组中删除 Controller 。
现在的问题是,观察者的删除是否正确完成 - 我担心可能会有对观察者的循环引用,但我不知道如何测试:
class ApplicationDelegate: NSObject, NSApplicationDelegate {
private let notificationCenter = NSNotificationCenter.defaultCenter()
private var mainWindowControllers = [MainWindowController]()
func newWindow() {
let mainWindowController = MainWindowController()
let window = mainWindowController.window
var observer: AnyObject?
observer = notificationCenter.addObserverForName(NSWindowWillCloseNotification,
object: window,
queue: nil) { (_) in
// remove the controller from self.mainWindowControllers
self.mainWindowControllers = self.mainWindowControllers.filter() {
$0 !== mainWindowController
}
// remove the observer for this mainWindowController.window
self.notificationCenter.removeObserver(observer!)
}
mainWindowControllers.append(mainWindowController)
}
}
最佳答案
一般来说,您应该始终指定在 NSNotificationCenter
注册的 block 中 self
是无主的。这将防止该 block 对 self
产生强引用。您可以在闭包的参数列表前面使用捕获列表来执行此操作:
{ [unowned self] (_) in
// Block content
}
关于Swift:addObserverForName 的 usingBlock 中可能存在 removeObserver 循环引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37776568/
简短版本: -removeObserver:forKeyPath:有什么用? ? 为什么不总是使用 -removeObserver:forKeyPath:context: ? 长版 在开发 Cocoa
我想添加一个 View Controller 作为通知的观察者。 调用选择器方法时,我会提醒用户。我希望只有当此 View Controller 是顶 View Controller 时才会出现此警报
我有一个 UITextView 子类,我在其中添加了一个 NSNotificationCenter 观察器。但是我在哪里再次删除观察者呢? 我的代码: _textDidChangeNotificati
该应用程序应仅加载本地发布的帖子。使用 GeoFire 在 FB 中有一个分支“posts_location”。我想先填充“nearbyPostsKeys”数组,然后从 FB 的分支帖子中加载那些引用
我有下一个代码: @implementation SplashViewVC - (void)viewDidLoad { [super viewDidLoad]; self.splash
以下是否删除了所有按名称添加的 NSNotificationCenter.defaultCenter View ? NotificationCenter.default.removeObserver(
我创建了一个观察器来跟踪AVPlayer的“速率”。每当AVPlayer速率按预期变化时,都会显示观察者通知。但是,当我尝试在AVPlayer正在播放的项目上结束播放时删除观察者时,出现以下崩溃: *
当我注释掉... // [[NSNotificationCenter defaultCenter] removeObserver:self name:@"LoadRequestFromAppDel"
我有一个 View 可以像这样在 init 上观察自身的值: [self addObserver:self forKeyPath:@"focusPointOfInterestIndicator" op
我一直在观察一个值,直到用户注销。但是当我调用 self.ref.removeObserver(withHandle: self.handle) self.ref.removeAllObservers
我在事件线程中有一个通知中心: Poco::NotificationCentre nc; // publicly visible // (thread main loop which will p
通常我在 viewWillAppear 中添加我的观察者,并在 viewWillDisappear 中移除它们。在这种情况下,即使在 View 消失后,我也需要其中一名观察员继续,以便它可以完成一些工
这是我的观察事件代码: let databaseRef = FIRDatabase.database().reference() let query = databaseRef
-(void)viewDidAppear:(BOOL)animated { NSOperationQueue *mainQueue = [NSOperationQueue ma
基本上,我有一个 view1,它在某个时候调用 view2(通过 presentModalViewController:animated:)。当按下 view2 中的某个 UIButton 时,vie
众神将许多习惯空降到我与世隔绝的丛林村庄,例如: - (void) dealloc { [[NSNotificationCenter defaultCenter] removeObserver:s
我看过NSNotification addObserver/removeObserver 放在viewDidLoad/viewDidUnload , viewDidAppear/viewDidDisa
我遇到了从 NSNotificationCenter 中删除观察者的正确位置的问题 // DetailOfSomethingViewController @implementation DetailO
有各种与此主题相关的问题,但没有一个能回答我的问题。 我想在对象被释放时从对象中removeObserver。我正在使用 KVO,因为需要观察多个项目,而 NSNotification 在这种情况下会
我有一个带有按钮操作的 View Controller : @IBAction func MultiplayerButtonClick(sender: AnyObject) {
我是一名优秀的程序员,十分优秀!