提交 c4d2fc14 编写于 作者: DCloud_iOS_XHY's avatar DCloud_iOS_XHY

修改注释说明

上级 3ef95c0d
......@@ -11,7 +11,7 @@
返回值说明:
**注意平台差异:仅Android平台有返回值,iOS平台无返回值**
**注意平台差异:仅Android平台有返回值,iOS平台返回为空对象**
```kotlin
......
......@@ -4,11 +4,11 @@ import { UIApplication } from "UIKit"
class MemoryWarningTool {
static listener: UTSCallback | null;
// 监听截屏
// 监听内存警告
static listenMemoryWarning(callback: UTSCallback | null) {
this.listener = callback
// 注册监听截屏事件及回调方法
// 注册监听内存警告通知事件及设置回调方法
// target-action 回调方法需要通过 Selector("方法名") 构建
const method = Selector("receiveMemoryWarning")
NotificationCenter.default.addObserver(this, selector = method, name = UIApplication.didReceiveMemoryWarningNotification, object = null)
......@@ -17,7 +17,7 @@ class MemoryWarningTool {
// 内存警告回调的方法
// target-action 的方法前需要添加 @objc 前缀
@objc static receiveMemoryWarning() {
// 回调
// 触发回调
this.listener?.({})
}
......
......@@ -11,7 +11,7 @@ class CaptureScreenTool {
static listenCaptureScreen(callback: UTSCallback | null) {
this.listener = callback
// 注册监听截屏事件及回调方法
// 注册监听截屏通知事件及设置回调方法
// target-action 回调方法需要通过 Selector("方法名") 构建
const method = Selector("userDidTakeScreenshot")
NotificationCenter.default.addObserver(this, selector = method, name = UIApplication.userDidTakeScreenshotNotification, object = null)
......@@ -20,7 +20,7 @@ class CaptureScreenTool {
// 捕获截屏回调的方法
// target-action 的方法前需要添加 @objc 前缀
@objc static userDidTakeScreenshot() {
// 回调
// 触发回调
this.listener?.({})
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册