提交 b46d841d 编写于 作者: lizhongyi_'s avatar lizhongyi_

update uts-plugin.md utsioshookclass.md number.md

上级 69ac9dbc
......@@ -636,7 +636,9 @@ export default function getBatteryLevel():number {
> 此功能在 HBuilderX 3.96+ 版本支持,HBuilderX 3.96 之前的版本不支持。
#### iOS 平台
在插件开发过程中,有时我们需要监听 APP 的生命周期函数来完成一些业务逻辑,比如在应用启动时初始化三方 SDK, 在收到推送消息时做消息的处理,在被 url scheme 唤醒时调用指定功能等等。
在插件开发过程中,有时我们需要监听 APP 的生命周期函数来完成一些业务逻辑,比如在应用启动时初始化三方 SDK, 在收到推送消息时做消息的处理,在被 url scheme 唤醒时调用指定功能等等。
在 iOS 平台可以通过自定义 class 遵循 `UTSiOSHookProxy` 协议的方式来实现对应用程序生命周期函数的监听。
......
......@@ -3,57 +3,6 @@
Number 对象是经过封装的能让你处理数字值的对象。
## 实例属性
### MAX_VALUE
<!-- UTSJSON.Number.MAX_VALUE.description -->
<!-- UTSJSON.Number.MAX_VALUE.param -->
<!-- UTSJSON.Number.MAX_VALUE.returnValue -->
<!-- UTSJSON.Number.MAX_VALUE.compatibility -->
### MIN_VALUE
<!-- UTSJSON.Number.MIN_VALUE.description -->
<!-- UTSJSON.Number.MIN_VALUE.param -->
<!-- UTSJSON.Number.MIN_VALUE.returnValue -->
<!-- UTSJSON.Number.MIN_VALUE.compatibility -->
### NaN
<!-- UTSJSON.Number.NaN.description -->
<!-- UTSJSON.Number.NaN.param -->
<!-- UTSJSON.Number.NaN.returnValue -->
<!-- UTSJSON.Number.NaN.compatibility -->
### NEGATIVE_INFINITY
<!-- UTSJSON.Number.NEGATIVE_INFINITY.description -->
<!-- UTSJSON.Number.NEGATIVE_INFINITY.param -->
<!-- UTSJSON.Number.NEGATIVE_INFINITY.returnValue -->
<!-- UTSJSON.Number.NEGATIVE_INFINITY.compatibility -->
### POSITIVE_INFINITY
<!-- UTSJSON.Number.POSITIVE_INFINITY.description -->
<!-- UTSJSON.Number.POSITIVE_INFINITY.param -->
<!-- UTSJSON.Number.POSITIVE_INFINITY.returnValue -->
<!-- UTSJSON.Number.POSITIVE_INFINITY.compatibility -->
## 实例方法
......@@ -271,6 +220,7 @@ console.log(a.toLong());
<!-- UTSJSON.Number.toUInt8.compatibility -->
## 静态方法
### from()
......@@ -280,4 +230,12 @@ console.log(a.toLong());
<!-- UTSJSON.Number.from.returnValue -->
<!-- UTSJSON.Number.from.compatibility -->
\ No newline at end of file
<!-- UTSJSON.Number.from.compatibility -->
```ts
let a: Int = 12
let b = Number.from(a)
console.log(b);
// expected output: 12
```
\ No newline at end of file
# UTSiOSHookProxy
应用程序生命周期回调协议,此协议内的所有函数均由 app 调用,开发者可按需实现对应时机的回调函数。具体的使用方法[详见](https://uniapp.dcloud.net.cn/plugin/uts-plugin.html#hooksclass)
## 实例方法
## 应用程序生命周期回调函数
### onCreate()
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册