iOS Clear LaunchScreen cache

 NSError * error;

    [NSFileManager.defaultManager removeItemAtPath:[NSString stringWithFormat:@"%@/Library/SplashBoard",NSHomeDirectory()] error:&error];

    if (error) {

        NSLog(@"Failed to delete launch screen cache: %@",error);

    }

Guess you like

Origin blog.csdn.net/qq_28285625/article/details/113502493