Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-api
提交
3ef95c0d
U
uni-api
项目概览
DCloud
/
uni-api
通知
671
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看板
提交
3ef95c0d
编写于
11月 17, 2022
作者:
DCloud_iOS_XHY
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加 iOS平台内存警告示例
上级
5a6e3423
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
72 addition
and
21 deletion
+72
-21
.gitignore
.gitignore
+1
-0
uni_modules/uni-getbatteryinfo/utssdk/app-ios/config.json
uni_modules/uni-getbatteryinfo/utssdk/app-ios/config.json
+1
-1
uni_modules/uni-getbatteryinfo/utssdk/app-ios/index.uts
uni_modules/uni-getbatteryinfo/utssdk/app-ios/index.uts
+15
-5
uni_modules/uni-memorywarning/readme.md
uni_modules/uni-memorywarning/readme.md
+6
-4
uni_modules/uni-memorywarning/utssdk/app-ios/index.uts
uni_modules/uni-memorywarning/utssdk/app-ios/index.uts
+40
-0
uni_modules/uni-usercapturescreen/utssdk/app-ios/index.uts
uni_modules/uni-usercapturescreen/utssdk/app-ios/index.uts
+9
-11
未找到文件。
.gitignore
浏览文件 @
3ef95c0d
/unpackage
.DS_Store
\ No newline at end of file
uni_modules/uni-getbatteryinfo/utssdk/app-ios/config.json
浏览文件 @
3ef95c0d
{
"deploymentTarget"
:
"9"
"deploymentTarget"
:
"9
.0
"
}
\ No newline at end of file
uni_modules/uni-getbatteryinfo/utssdk/app-ios/index.uts
浏览文件 @
3ef95c0d
// 引用 iOS 原生平台 api
import { UIDevice } from "UIKit";
import { Int } from 'Swift';
/**
* 定义 接口参数
*/
type GetBatteryInfoOptions = {
success?: (res:
UTSJSONO
bject) => void;
fail?: (res:
UTSJSONO
bject) => void;
complete?: (res:
UTSJSONO
bject) => void;
success?: (res:
o
bject) => void;
fail?: (res:
o
bject) => void;
complete?: (res:
o
bject) => void;
};
/**
* 导出 获取电量方法
*/
export default function getBatteryInfo(options: GetBatteryInfoOptions) {
// 开启电量检测
UIDevice.current.isBatteryMonitoringEnabled = true
// 返回数据
const res = {
errMsg: "getBatteryInfo:ok",
level:
Number
(UIDevice.current.batteryLevel * 100),
level:
new Int
(UIDevice.current.batteryLevel * 100),
isCharging: UIDevice.current.batteryState == UIDevice.BatteryState.charging,
};
options.success?.(res);
options.complete?.(res);
}
}
\ No newline at end of file
uni_modules/uni-memorywarning/readme.md
浏览文件 @
3ef95c0d
...
...
@@ -2,14 +2,16 @@
### uni.onMemoryWarning(function listener)
监听内存不足告警事件
(目前仅Android)
监听内存不足告警事件
当
Android 向小程序
进程发出内存警告时,触发该事件。
当
系统应用
进程发出内存警告时,触发该事件。
触发该事件不意味应用被杀,大部分情况下仅仅是告警,开发者可在收到通知后回收一些不必要资源。
返回值说明:
返回值说明:
**注意平台差异:仅Android平台有返回值,iOS平台无返回值**
```
kotlin
...
...
@@ -65,7 +67,7 @@ int TRIM_MEMORY_COMPLETE = 80;
### uni.offMemoryWarning(function listener)
移除内存不足告警事件的监听函数
(目前仅Android)
移除内存不足告警事件的监听函数
onMemoryWarning 传入的监听函数。不传此参数则移除所有监听函数。
uni_modules/uni-memorywarning/utssdk/app-ios/index.uts
浏览文件 @
3ef95c0d
import { NotificationCenter } from 'Foundation';
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)
}
// 内存警告回调的方法
// target-action 的方法前需要添加 @objc 前缀
@objc static receiveMemoryWarning() {
// 回调
this.listener?.({})
}
// 移除监听事件
static removeListen(callback: UTSCallback | null) {
this.listener = null
NotificationCenter.default.removeObserver(this)
callback?.({})
}
}
// 开启监听内存警告
export function onMemoryWarning(callback: UTSCallback | null) {
MemoryWarningTool.listenMemoryWarning(callback)
}
// 关闭监听内存警告
export function offMemoryWarning(callback: UTSCallback | null) {
MemoryWarningTool.removeListen(callback)
}
\ No newline at end of file
uni_modules/uni-usercapturescreen/utssdk/app-ios/index.uts
浏览文件 @
3ef95c0d
import { NotificationCenter} from 'Foundation';
import { NotificationCenter
} from 'Foundation';
import { UIApplication } from "UIKit"
/**
* 定义监听截屏事件工具类
*/
class CaptureScreenTool {
static listener
?: UTSCallback
;
static listener
: UTSCallback | null
;
// 监听截屏
static listenCaptureScreen(callback
?: UTSCallback
) {
static listenCaptureScreen(callback
: UTSCallback | null
) {
this.listener = callback
// 注册监听截屏事件及回调方法
...
...
@@ -20,30 +20,28 @@ class CaptureScreenTool {
// 捕获截屏回调的方法
// target-action 的方法前需要添加 @objc 前缀
@objc static userDidTakeScreenshot() {
const obj = new UTSJSONObject()
// 回调
this.listener?.(
obj
)
this.listener?.(
{}
)
}
// 移除监听事件
static removeListen(callback
?: UTSCallback
) {
static removeListen(callback
: UTSCallback | null
) {
this.listener = null
NotificationCenter.default.removeObserver(this)
const obj = new UTSJSONObject()
callback?.(obj)
callback?.({})
}
}
/**
* 开启截图监听
*/
export function onUserCaptureScreen(callback
?: UTSCallback
) {
export function onUserCaptureScreen(callback
: UTSCallback | null
) {
CaptureScreenTool.listenCaptureScreen(callback)
}
/**
* 关闭截屏监听
*/
export function offUserCaptureScreen(callback
?: UTSCallback
) {
export function offUserCaptureScreen(callback
: UTSCallback | null
) {
CaptureScreenTool.removeListen(callback)
}
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录