iOS 清除LaunchScreen缓存

 NSError *error;

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

    if (error) {

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

    }

猜你喜欢

转载自blog.csdn.net/qq_28285625/article/details/113502493