Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-zh
提交
633867c0
unidocs-zh
项目概览
DCloud
/
unidocs-zh
通知
3172
Star
105
Fork
804
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
93
列表
看板
标记
里程碑
合并请求
67
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
unidocs-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
93
Issue
93
列表
看板
标记
里程碑
合并请求
67
合并请求
67
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
633867c0
编写于
11月 22, 2022
作者:
DCloud_iOS_XHY
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
uts-for-ios 添加调用构造方法说明
上级
27506b5c
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
24 addition
and
9 deletion
+24
-9
docs/plugin/uts-for-ios.md
docs/plugin/uts-for-ios.md
+24
-9
未找到文件。
docs/plugin/uts-for-ios.md
浏览文件 @
633867c0
...
...
@@ -259,7 +259,22 @@ uts 中也支持在变量名称后面加 ?表示可选类型,这是标准 ts
let user?:string = null
```
#### 5.1.3 函数参数标签
#### 5.1.3 调用构造方法
swift 中调用构造方法创建实例对象时不需要使用
`new`
关键字
```
swift
var
alert
=
UIAlertController
()
```
uts 中调用构造方法实例化对象时需要在构造方法前加上
`new`
关键字
```
TypeScript
var alert = new UIAlertController()
```
#### 5.1.4 函数参数标签
在 swift 中方法参数存在标签时使用
`:`
连接在标签和参数值之间,在 uts 中需要使用
`=`
连接
...
...
@@ -276,7 +291,7 @@ var alert = UIAlertController(title: "提示", message: "提示内容", preferre
let alert = new UIAlertController(title="提示", message="提示内容", preferredStyle=UIAlertController.Style.alert)
```
#### 5.1.
4
枚举值
#### 5.1.
5
枚举值
枚举在 swift 中可以忽略枚举类型直接简写
`.枚举值`
,在 uts 中不支持简写,需要完整的写出
`枚举类型.枚举值`
上面的示例中 swift 中最后一个参数 preferredStyle 的值可以简写为
...
...
@@ -292,7 +307,7 @@ UIAlertController.Style.alert
```
#### 5.1.
5
类继承
#### 5.1.
6
类继承
swift 中定义子类继承父类时需要在子类名称后加上父类名称,中间以冒号
`:`
分隔
...
...
@@ -312,7 +327,7 @@ class Son extends Father {
}
```
#### 5.1.
6
遵循协议方法
#### 5.1.
7
遵循协议方法
swift 中要让自定义类型遵循某个协议,在定义类型时,需要在类型名称后加上协议名称,中间以冒号
`:`
分隔。遵循多个协议时,各协议之间用逗号
`,`
分隔:
...
...
@@ -330,7 +345,7 @@ class SomeClass implements FirstProtocol, AnotherProtocol {
}
```
#### 5.1.
7
系统版本判断
#### 5.1.
8
系统版本判断
swift 中系统版本判断的方法
...
...
@@ -349,7 +364,7 @@ if (UIDevice.current.systemVersion >= "10.0") {
}
```
#### 5.1.
8
闭包
#### 5.1.
9
闭包
swift 中闭包可以简写
...
...
@@ -369,7 +384,7 @@ let action = new UIAlertAction(title="确认", style=UIAlertAction.Style.default
})
```
#### 5.1.
9
target-action 方法
#### 5.1.
10
target-action 方法
uts 中调用原生中涉及 target-action 的方法时,比如给
`UIButton`
添加点击事件方法、注册通知中心事件方法时注意事项,
...
...
@@ -397,7 +412,7 @@ NotificationCenter.default.addObserver(this, selector = method, name = UIApplica
}
```
#### 5.1.1
0
字典类型
#### 5.1.1
1
字典类型
swift 中的 Dictionary 类型,在 uts 中使用 Map 类型代替
...
...
@@ -412,7 +427,7 @@ value["name"] = "uts"
let map: Map<string,any> = new Map()
map.set("name","uts")
```
#### 5.1.1
1
覆写方法存在参数标签的兼容问题
#### 5.1.1
2
覆写方法存在参数标签的兼容问题
当覆写系统方法,或实现三方SDK的协议方法时,一些方法可能会存在参数标签的情况
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录