feixue299
feixue299
You should set the entryBackground instead of the customView's backgroundColor
This is how I set it up ``` var attributes = EKAttributes() attributes.entryBackground = .color(color: EKColor(.white)) attributes.roundCorners = .top(radius: 40) ``` The pop-up view needs to be clear color
appledoc是扫描当前目录下的文件,你应该是在第三方的目录中执行了,所以才没有生成自己写的类。
> 抱歉,该项目不再维护了 好吧,做的挺好的,赞
Currently, it appears that the library Padding, or SecPadding, does not have the PKCS8 format.
应该判断,然后兼容iOS13以后的风格的
> In your example, which static dependency in which context isn't displayed? L10n. AccountSettings. account this static var is not in unused_declaration list
> 连接真机后Crash也不会进堆栈信息,而是Xcode 直接弹 Alert 报错: > > The app “XXX” on XXX quit unexpectedly. Message from debugger: Terminated due to memory issue 这是内存溢出了,Kingfisher加载gif确实会比较吃内存
iOS 18 ipad的层级改变了 可以自己把tabbar加上去 - 在ESTabBarController类中 ```swift if UIDevice.current.userInterfaceIdiom == .pad { if #available(iOS 18.0, *) { traitOverrides.horizontalSizeClass = .compact view.addSubview(tabBar) } } ``` 涉及旋转的话,使用autolayout布局
> > iOS 18 ipad的层级改变了 可以自己把tabbar加上去 > > > > * 在ESTabBarController类中 > > > > ```swift > > if UIDevice.current.userInterfaceIdiom == .pad { > > if #available(iOS 18.0, *)...