iOS LaunchScreen.storyboard启动图缓存问题处理
时间:2020-07-07 16:26:31
收藏:0
阅读:801
NSError *error;
[NSFileManager.defaultManager removeItemAtPath:[NSString stringWithFormat:@"%@/Library/SplashBoard",NSHomeDirectory()] error:&error];
if (error) {
NSLog(@"Failed to delete launch screen cache: %@",error);
}
原文:https://www.cnblogs.com/diweinan/p/13261332.html
评论(0)