使用Golang访问移动文件系统

huangapple go评论73阅读模式
英文:

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()

huangapple
  • 本文由 发表于 2017年3月11日 13:47:40
  • 转载请务必保留本文链接:https://go.coder-hub.com/42731835.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定