GKWenBo
GKWenBo
@codestrummer29 I have the same bug,can you show me your revised file or code.Thank your very mutch!
这样写在iOS 13也可达到隐藏的效果: ```Objective-C //隐藏分割线 if (@available(iOS 13.0, *)) { UITabBarAppearance *tabBarAppearance = [[UITabBarAppearance alloc] init]; [tabBarAppearance configureWithDefaultBackground]; tabBarAppearance.shadowColor = [UIColor clearColor]; tabBarAppearance.backgroundColor = [UIColor whiteColor]; UITabBar.appearance.standardAppearance = tabBarAppearance; self.tabBar.standardAppearance =...
@q858333 你好,请问这个问题解决了吗
我也遇到了,请问是怎么解决的呢 @zhangzhihua2019
作者有遇到过这种情况吗,可能是什么原因导致的呢?
@zhaoyuan-1224 你好,请问你研究出登录testcase,可以提供参考下吗
我查看了下app沙盒,有两张启动屏图,一张正常,一张白色
@lukapool 是这里设置的,我调试时,发现启动屏获取图片方法可能会因为嵌套,获取不到图片视图
类似于这种结构:  可能需要递归遍历子视图,我对框架原理还不是很了解,看是否需要递归遍历所有子视图。现在遍历只拿到了UIStackView,嵌套的图片视图拿不到的。