Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-api
提交
c4d2fc14
U
uni-api
项目概览
DCloud
/
uni-api
通知
670
Star
23
Fork
12
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
3
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-api
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
3
Issue
3
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
c4d2fc14
编写于
11月 18, 2022
作者:
DCloud_iOS_XHY
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改注释说明
上级
3ef95c0d
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
6 addition
and
6 deletion
+6
-6
uni_modules/uni-memorywarning/readme.md
uni_modules/uni-memorywarning/readme.md
+1
-1
uni_modules/uni-memorywarning/utssdk/app-ios/index.uts
uni_modules/uni-memorywarning/utssdk/app-ios/index.uts
+3
-3
uni_modules/uni-usercapturescreen/utssdk/app-ios/index.uts
uni_modules/uni-usercapturescreen/utssdk/app-ios/index.uts
+2
-2
未找到文件。
uni_modules/uni-memorywarning/readme.md
浏览文件 @
c4d2fc14
...
...
@@ -11,7 +11,7 @@
返回值说明:
**注意平台差异:仅Android平台有返回值,iOS平台
无返回值
**
**注意平台差异:仅Android平台有返回值,iOS平台
返回为空对象
**
```
kotlin
...
...
uni_modules/uni-memorywarning/utssdk/app-ios/index.uts
浏览文件 @
c4d2fc14
...
...
@@ -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?.({})
}
...
...
uni_modules/uni-usercapturescreen/utssdk/app-ios/index.uts
浏览文件 @
c4d2fc14
...
...
@@ -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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录