Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序中有 loadGraphics() 函数。执行需要很长时间。我想在此功能运行时制作加载屏幕。我可以创建内部回调,它会通知我函数成功吗?提前致谢。
是的。只需创建一个只能在类中访问的私有布尔值,最初将其设置为 false。在开始 loadGraphics() 之前,只需启动一个基本线程,如果该布尔值为 true,则其中包含回调。
然后只需在 loadGraphics() 的末尾添加一个将布尔值设置为 true 的语句。