You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classCustomJZRowHeader:JZRowHeader{publicoverrideinit(frame:CGRect){
super.init(frame: frame)
backgroundColor =.colorPrimary // uses correct color on Dark Mode
self.lblTime.setTheme(textColor:.colorWhiteOnly, font:UIFont().SemiboldFont(ofSize:9))self.dateFormatter.locale =Locale(identifier:AppUserDefault.shared.getValue(for:.DefaultLanguage))}requiredpublicinit?(coder aDecoder:NSCoder){fatalError("init(coder:) has not been implemented")}}
// Subclasses for Headers and Backgrounds
classCustomJZColumnHeader:JZColumnHeader{publicoverrideinit(frame:CGRect){
super.init(frame:.zero)
backgroundColor =.colorPrimary // the corresponding background-class will get the correct color
self.dateFormatter.locale =Locale(identifier:AppUserDefault.shared.getValue(for:.DefaultLanguage))}requiredinit?(coder aDecoder:NSCoder){fatalError("init(coder:) has not been implemented")}}
The text was updated successfully, but these errors were encountered: