预加载动态类来加载自己的内容
如何预加载加载其自身内容的动态类?因为从理论上讲,类在加载其内容之前还没有大小,对吗?
How do you preload dynamic classes which loads its own content? cause theoretically speaking the classes doesn't have a size yet until it loads its content right?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须初始化对象,开始加载,然后从中获取文件的大小以执行预加载动画。因此,您无法预加载未初始化的类,因为在加载它之前您不知道它的大小。
you would have to initialise the object, start it loading and then get the size of the file(s) from it to do a preload animation. therefore you cannot preload an uninitialised class as you dont know the size of it untill it is loading.