Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-api
提交
4826d827
U
uni-api
项目概览
DCloud
/
uni-api
通知
658
Star
22
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
4826d827
编写于
3月 16, 2023
作者:
杜庆泉
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'dev' of
https://gitcode.net/dcloud/uni-api
into dev
上级
12094f51
e0056cf8
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
6 addition
and
15 deletion
+6
-15
uni_modules/uni-memorywarning/utssdk/app-ios/index.uts
uni_modules/uni-memorywarning/utssdk/app-ios/index.uts
+6
-9
uni_modules/uni-memorywarning/utssdk/interface.uts
uni_modules/uni-memorywarning/utssdk/interface.uts
+0
-6
未找到文件。
uni_modules/uni-memorywarning/utssdk/app-ios/index.uts
浏览文件 @
4826d827
...
...
@@ -2,13 +2,11 @@ import { NotificationCenter } from 'Foundation';
import { UIApplication } from "UIKit"
import { Selector } from "ObjectiveC"
import { OffMemoryWarning, OnMemoryWarning, OnMemoryWarningCallback, OnMemoryWarningCallbackResult } from "../interface.uts"
class MemoryWarningTool {
static listeners:
OnMemoryWarning
Callback[] = []
static listeners:
UTS
Callback[] = []
// 监听内存警告
static listenMemoryWarning(callback:
OnMemoryWarning
Callback) {
static listenMemoryWarning(callback:
UTS
Callback) {
// 只有首次才需要注册监听事件
if (this.listeners.length == 0) {
...
...
@@ -25,13 +23,12 @@ class MemoryWarningTool {
@objc static receiveMemoryWarning() {
// 触发回调
this.listeners.forEach(listener => {
const ret: OnMemoryWarningCallbackResult = {}
listener(ret)
listener({})
})
}
// 移除监听事件
static removeListen(callback:
OnMemoryWarning
Callback | null) {
static removeListen(callback:
UTS
Callback | null) {
// 移除所有监听
if (callback == null) {
this.listeners = []
...
...
@@ -49,11 +46,11 @@ class MemoryWarningTool {
}
// 开启监听内存警告
export
const onMemoryWarning : OnMemoryWarning = function (callback: OnMemoryWarning
Callback) {
export
function onMemoryWarning(callback: UTS
Callback) {
MemoryWarningTool.listenMemoryWarning(callback)
}
// 关闭监听内存警告
export
const offMemoryWarning : OffMemoryWarning = function (callback: OnMemoryWarning
Callback | null) {
export
function offMemoryWarning(callback: UTS
Callback | null) {
MemoryWarningTool.removeListen(callback)
}
\ No newline at end of file
uni_modules/uni-memorywarning/utssdk/interface.uts
已删除
100644 → 0
浏览文件 @
12094f51
export type OnMemoryWarningCallbackResult = {
level : number | null
}
export type OnMemoryWarningCallback = (res : OnMemoryWarningCallbackResult) => void
export type OnMemoryWarning = (callback : OnMemoryWarningCallback) => void
export type OffMemoryWarning = (callback : OnMemoryWarningCallback | null) => void
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录