gpt4 book ai didi

javascript - HTML 页面加载时发布 NSNotification

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

我对 Objective C 非常陌生,我正在使用phonegap 来创建一个应用程序。有没有办法在DeviceReady 上或执行函数时发送 NSNotifications?

最佳答案

没有内置方法可以做你想做的事情

Cordova 在页面加载时发布通知,不确定是否在 cordovaready 时或之前几分钟调用此通知

[[NSNotificationCenter defaultCenter] postNotification:[NSNotification notificationWithName:CDVPageDidLoadNotification object:self.webView]];

你可以这样得到它

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(pageDidLoad) name:CDVPageDidLoadNotification object:self.webView];

但如果您希望设备就绪,您需要创建自己的插件来发布该通知。要创建插件,请遵循本指南 http://docs.phonegap.com/en/3.5.0/guide_hybrid_plugins_index.md.html#Plugin%20Development%20Guide

关于javascript - HTML 页面加载时发布 NSNotification,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27146500/

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