在main.cpp中
#include <QPixmap>
#include <QSplashScreen>
int main(int argc,char* argv[])
{
QApplication app(argc,argv);
QPixmap pixmap("screen.png");
QSplashScreen splash(pixmap);
splash.show();
for(int i=0;i<800000000,i++){}//假设后台在做一些预处理工作
MainWindow w;
w.show();
splash.finish(&w);
return app.exec();
}