gpt4 book ai didi

ios - Titanium 使用 NSNotificationCenter 使用 Hyperloop

转载 作者:行者123 更新时间:2023-11-28 23:48:15 25 4
gpt4 key购买 nike

我正在尝试在我的 Titanium 应用程序中使用 hyperloop 监控 UIScreenCapturedDidChangeNotification 的屏幕录制状态。我已经尝试了一段时间,但找不到任何在 hyperloop 中使用 NotificationCenter 或 addObserver 的示例。基本上,我试图将以下 native 代码带入 hyperloop 中,但没有成功:

if (@available(iOS 11.0, *)) {
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(handleScreenCaptureChange)
name:UIScreenCapturedDidChangeNotification object:nil];
}

这是我的尝试,但没有成功:

//Add event listener to monitor screen recording.
var NotificationCenter = require('Foundation/NSNotificationCenter');
var UIScreenMonitor = Hyperloop.defineClass('UIScreenMonitor', 'NSObject');

UIScreenMonitor.addMethod({
selector : 'handleScreenRecording',
instance : true,
arguments : ['NSNotification'],
callback : function(screen) {
alert('Screen recording changed: '+UIScreen.mainScreen.isCaptured());
console.log('Screen recording changed: ',UIScreen.mainScreen.isCaptured(),screen.isCaptured());
}
});

var screenMonitor = UIScreenMonitor();
NotificationCenter.defaultCenter.addObserverSelectorNameObject(screenMonitor,'handleScreenRecording',UIScreen.UIScreenCapturedDidChangeNotification,null);

最佳答案

尝试改变一些东西:-

  1. UIScreenMonitor.addMethod 中的选择器名称需要一个冒号,例如。 'handleScreenRecording:'
  2. 同样在您的“addObserverSelectorNameObject”函数调用中,选择器需要一个冒号,例如。 'handleScreenRecording:'
  3. 在实例化 UIScreenMonitor 类的新实例时添加一个 'new' 关键字。
  4. screenMonitor 也需要在您需要的时间内持续存在(即不是本地变量),如果不是的话。

希望这能奏效。

关于ios - Titanium 使用 NSNotificationCenter 使用 Hyperloop,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52257709/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com