欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

iOS 加载Bundle文件的实例代码

程序员文章站 2023-12-21 22:18:28
废话不多说了,下面通过一段代码给大家介绍ios 加载bundle文件的方法,具体代码如下所示: - (nsstring *)loadjsfile:(nsstrin...

废话不多说了,下面通过一段代码给大家介绍ios 加载bundle文件的方法,具体代码如下所示:

- (nsstring *)loadjsfile:(nsstring *)filename type:(nsstring *)type{
  nsstring *path = [[nsbundle mainbundle] pathforresource:filename oftype:type];
  nsstring *string1 = [nsstring stringwithcontentsoffile:path encoding:nsutf8stringencoding error:nil];
  nsstring *string1 = [nsstring stringwithcontentsofurl:[nsurl urlwithstring:path] encoding:nsutf8stringencoding error:nil];
  return jsscript;
}

以上所述是小编给大家介绍的ios 加载bundle文件的实例代码,希望对大家有所帮助

上一篇:

下一篇: