Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-api
提交
6a772945
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看板
提交
6a772945
编写于
3月 15, 2023
作者:
DCloud_iOS_XHY
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
优化iOS插件示例
上级
3c5f0a7f
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
15 addition
and
8 deletion
+15
-8
uni_modules/uni-getbatteryinfo/utssdk/app-ios/index.uts
uni_modules/uni-getbatteryinfo/utssdk/app-ios/index.uts
+0
-2
uni_modules/uni-memorywarning/utssdk/app-ios/index.uts
uni_modules/uni-memorywarning/utssdk/app-ios/index.uts
+9
-6
uni_modules/uni-memorywarning/utssdk/interface.uts
uni_modules/uni-memorywarning/utssdk/interface.uts
+6
-0
未找到文件。
uni_modules/uni-getbatteryinfo/utssdk/app-ios/index.uts
浏览文件 @
6a772945
...
...
@@ -14,8 +14,6 @@ export const getBatteryInfo : GetBatteryInfo = function (options) {
// 返回数据
const res : GetBatteryInfoSuccess = {
errCode: 0,
errSubject: "uni-getBatteryInfo",
errMsg: "getBatteryInfo:ok",
level: new Int(UIDevice.current.batteryLevel * 100),
isCharging: UIDevice.current.batteryState == UIDevice.BatteryState.charging,
...
...
uni_modules/uni-memorywarning/utssdk/app-ios/index.uts
浏览文件 @
6a772945
...
...
@@ -2,11 +2,13 @@ import { NotificationCenter } from 'Foundation';
import { UIApplication } from "UIKit"
import { Selector } from "ObjectiveC"
import { OffMemoryWarning, OnMemoryWarning, OnMemoryWarningCallback, OnMemoryWarningCallbackResult } from "../interface.uts"
class MemoryWarningTool {
static listeners:
UTS
Callback[] = []
static listeners:
OnMemoryWarning
Callback[] = []
// 监听内存警告
static listenMemoryWarning(callback:
UTS
Callback) {
static listenMemoryWarning(callback:
OnMemoryWarning
Callback) {
// 只有首次才需要注册监听事件
if (this.listeners.length == 0) {
...
...
@@ -23,12 +25,13 @@ class MemoryWarningTool {
@objc static receiveMemoryWarning() {
// 触发回调
this.listeners.forEach(listener => {
listener({})
const ret: OnMemoryWarningCallbackResult = {}
listener(ret)
})
}
// 移除监听事件
static removeListen(callback:
UTS
Callback | null) {
static removeListen(callback:
OnMemoryWarning
Callback | null) {
// 移除所有监听
if (callback == null) {
this.listeners = []
...
...
@@ -46,11 +49,11 @@ class MemoryWarningTool {
}
// 开启监听内存警告
export
function onMemoryWarning(callback: UTS
Callback) {
export
const onMemoryWarning : OnMemoryWarning = function (callback: OnMemoryWarning
Callback) {
MemoryWarningTool.listenMemoryWarning(callback)
}
// 关闭监听内存警告
export
function offMemoryWarning(callback: UTS
Callback | null) {
export
const offMemoryWarning : OffMemoryWarning = function (callback: OnMemoryWarning
Callback | null) {
MemoryWarningTool.removeListen(callback)
}
\ No newline at end of file
uni_modules/uni-memorywarning/utssdk/interface.uts
0 → 100644
浏览文件 @
6a772945
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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录