Skip to main content

环境

from ascript.ios.system import R

访问当前程序的环境目录

工程名称

from ascript.ios.system import R
R.name

工程根目录

from ascript.ios.system import R
R.root

资源目录

  • 方法
R.res(child: str = None)
  • 参数
参数类型是否必填说明
childstr子目录路径
  • 示例
# 获取资源目录路径
from ascript.ios.system import R
path = R.res()
print(path)
# 获取资源目录路径
from ascript.ios.system import R
path = R.res("img/a.png")
print(path)

img目录

  • 方法
R.img(child: str = None)
  • 参数
参数类型是否必填说明
childstr子目录路径
  • 示例
# 获取img下的图片
from ascript.ios.system import R
path = R.img("a.png")
print(path)