Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-zh
提交
e3bff5d9
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看板
提交
e3bff5d9
编写于
12月 14, 2023
作者:
lizhongyi_
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update uts-for-ios.md
上级
5965901f
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
27 addition
and
0 deletion
+27
-0
docs/plugin/uts-for-ios.md
docs/plugin/uts-for-ios.md
+27
-0
未找到文件。
docs/plugin/uts-for-ios.md
浏览文件 @
e3bff5d9
...
...
@@ -460,6 +460,33 @@ let alert = new UIAlertController(title="提示", message="提示内容", prefer
UIAlertController
.
Style
.
alert
```
枚举在 swift 中可以定义关联类型,可在关联值中传递信息,但是在 ts 中没有这种语法,所以目前 uts 还暂不支持此种用法。
```
swift
// 定义带关联值的枚举
enum
Barcode
{
case
upc
(
Int
,
Int
,
Int
,
Int
)
case
qrCode
(
String
)
}
// 定义枚举值
var
productBarcode
=
Barcode
.
upc
(
8
,
85909
,
51226
,
3
)
productBarcode
=
.
qrCode
(
"ABCDEFGHIJKLMNOP"
)
// 匹配
switch
productBarcode
{
case
let
.
upc
(
numberSystem
,
manufacturer
,
product
,
check
):
print
(
"UPC :
\(
numberSystem
)
,
\(
manufacturer
)
,
\(
product
)
,
\(
check
)
."
)
case
let
.
qrCode
(
productCode
):
print
(
"QR code:
\(
productCode
)
."
)
}
```
如果遇到上述类型的枚举,且在三方库中无法改动的,可以在 Swift 文件中进行调用,然后把 该 Swift 文件打包在 framework 中供 uts 插件使用;
如果上述类型的枚举定义在有源码的 swift 中时,可以将其定义成不包含关联值的枚举,然后使用合适的数据结构来表示关联值携带的信息。
#### 5.1.6 类继承
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录