Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-zh
提交
a1b27ad9
unidocs-zh
项目概览
DCloud
/
unidocs-zh
通知
3200
Star
106
Fork
813
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
94
列表
看板
标记
里程碑
合并请求
70
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
unidocs-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
94
Issue
94
列表
看板
标记
里程碑
合并请求
70
合并请求
70
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
a1b27ad9
编写于
6月 08, 2023
作者:
DCloud_iOS_XHY
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update docs
上级
6c495ef7
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
24 addition
and
3 deletion
+24
-3
docs/plugin/uts-for-ios.md
docs/plugin/uts-for-ios.md
+24
-3
未找到文件。
docs/plugin/uts-for-ios.md
浏览文件 @
a1b27ad9
...
@@ -365,9 +365,9 @@ var alert = new UIAlertController()
...
@@ -365,9 +365,9 @@ var alert = new UIAlertController()
```
```
#### 5.1.4 函数参数
标签
#### 5.1.4 函数参数
在 swift 中
方法参数存在标签时使用
`:`
连接在标签和参数值之间
,在 uts 中需要使用
`=`
连接
在 swift 中
参数名称使用
`:`
连接参数值
,在 uts 中需要使用
`=`
连接
示例
示例
...
@@ -518,7 +518,7 @@ value["name"] = "uts"
...
@@ -518,7 +518,7 @@ value["name"] = "uts"
let
map
:
Map
<
string
,
any
>
=
new
Map
()
let
map
:
Map
<
string
,
any
>
=
new
Map
()
map
.
set
(
"
name
"
,
"
uts
"
)
map
.
set
(
"
name
"
,
"
uts
"
)
```
```
#### 5.1.12
覆写方法存在
参数标签的兼容问题
#### 5.1.12 参数标签的兼容问题
> HBuilder X 3.6.11+ 版本支持
> HBuilder X 3.6.11+ 版本支持
当覆写系统方法,或实现三方SDK的协议方法时,一些方法可能会存在参数标签的情况
当覆写系统方法,或实现三方SDK的协议方法时,一些方法可能会存在参数标签的情况
...
@@ -546,6 +546,7 @@ func tencentLBSLocationManager(_ manager: TencentLBSLocationManager, didUpdate l
...
@@ -546,6 +546,7 @@ func tencentLBSLocationManager(_ manager: TencentLBSLocationManager, didUpdate l
uts 中需要用注解语法 @argumentLabel("didUpdate") 来表示参数标签
uts 中需要用注解语法 @argumentLabel("didUpdate") 来表示参数标签
```
ts
```
ts
// uts
// 实现位置更新的 delegate 方法
// 实现位置更新的 delegate 方法
tencentLBSLocationManager
(
manager
:
TencentLBSLocationManager
,
@
argumentLabel
(
"
didUpdate
"
)
location
:
TencentLBSLocation
)
{
tencentLBSLocationManager
(
manager
:
TencentLBSLocationManager
,
@
argumentLabel
(
"
didUpdate
"
)
location
:
TencentLBSLocation
)
{
let
response
=
new
LocationResponse
();
let
response
=
new
LocationResponse
();
...
@@ -561,6 +562,26 @@ tencentLBSLocationManager(manager: TencentLBSLocationManager, @argumentLabel("di
...
@@ -561,6 +562,26 @@ tencentLBSLocationManager(manager: TencentLBSLocationManager, @argumentLabel("di
`~/uni_modules/uts-tencentgeolocation/utssdk/app-ios/index.uts`
`~/uni_modules/uts-tencentgeolocation/utssdk/app-ios/index.uts`
#### 5.1.12.1 无参数标签
只写参数名称的参数,编译后会在参数前默认增加
`_`
来忽略参数标签(如上面的示例,第一个参数 manager,这种方式能兼容绝大多数方法,尤其是Swift 调用 OC 方法),但是有些参数没有参数标签,默认添加
`_`
的行为会和原生方法定义不一致,这种情况需要定义一个空的参数标签来解决
`@argumentLabel("didUpdate")`
,示例
高德定位 SDK 的代理方法,第三个参数 reGeocode 只有参数名称,没有参数标签
```
swift
// swift
func
amapLocationManager
(
_
manager
:
AMapLocationManager
!
,
didUpdate
location
:
CLLocation
!
,
reGeocode
:
AMapLocationReGeocode
!
)
```
uts 实现此方法时,需要给 reGeocode 参数添加一个空的参数标签
```
ts
// uts
amapLocationManager
(
manager
:
AMapLocationManager
,
@
argumentLabel
(
"
didUpdate
"
)
location
:
CLLocation
,
@
argumentLabel
(
""
)
reGeocode
:
AMapLocationReGeocode
)
{
}
```
#### 5.1.13 异步方法
#### 5.1.13 异步方法
swift 标记某个函数或者方法是异步的,你可以在它的声明中的参数列表后边加上
`async`
关键字
swift 标记某个函数或者方法是异步的,你可以在它的声明中的参数列表后边加上
`async`
关键字
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录