英文:
golang mobile access file system
问题
你好!以下是你要翻译的内容:
如何在gomobile中访问设备系统?
是否有一种与本地库进行交互的方法?
像这样:
package xy
import(
"Foundation" // iOS库
)
// 使用Foundation包进行一些操作
func Test(){
}
英文:
How can i access the device system in gomobile?
Is there a way to interact with the native libs?
Like this:
package xy
import(
"Foundation"// ios libraray
)
// Do some stuff with the Foundation package
func Test(){
}
答案1
得分: 4
是的。在这里查看反向绑定;https://godoc.org/golang.org/x/mobile/cmd/gobind
简而言之,您导入Android/ObjectiveC库,然后就可以开始使用了。
他们给出的示例是:
import "ObjC/Foundation/NSDate"
d := NSDate.Date()
英文:
Yes. Take a look at Reverse Bindings here; https://godoc.org/golang.org/x/mobile/cmd/gobind
To summarise, you import the Android/ObjectiveC library and are good to go.
The example they give;
import "ObjC/Foundation/NSDate
d := NSDate.Date()
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论