Results 3 comments of [email protected]

系统配置有多个target,对应多种语言

我跑你的Demo没问题,在我自己的App上就不行 `+ (nullable NSString *)ll_getLaunchImagePath { static NSString *path = nil; static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{ NSString *bundleIdentifier = NSBundle.mainBundle.bundleIdentifier; if (@available(iOS 13.0, *)) { NSString *libraryPath = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask,...

解决了,我代码早些时候添加了清理启动图的功能,一直没去掉,在debug的时候调用了 `[NSFileManager.defaultManager removeItemAtPath:[NSString stringWithFormat:@"%@/Library/SplashBoard",NSHomeDirectory()] error:&clearLaunchrror]`, 所以导致后面再去查询系统的启动图为空;感谢