gpt4 book ai didi

ios - 获取 SCNText 中的 String 属性

转载 作者:行者123 更新时间:2023-11-28 10:52:00 27 4
gpt4 key购买 nike

我有一个 SCNText 元素:

print(NodeElement?.geometry?)

// output
`Optional(<SCNText: 0x1c01f6800 'text' | 3 elements | string=At desk extrusionDepth=0.500> )`

但是,当我这样做时:

print(self.editingSCNBodyNode?.geometry?.string)

我得到错误:

“SCNGeometry”类型的值没有成员“string”

根据 Apple 的 documentation ,这是可以获取和设置的变量。

最佳答案

SCNTextSCNGeometry 的子类。的类型self.editingSCNBodyNode?.geometrySCNGeometry? 你有有条件地对其进行向下转换:

if let scnText = self.editingSCNBodyNode?.geometry as? SCNText {
print(scnText.string)
}

关于ios - 获取 SCNText 中的 String 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45744429/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com