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
Hello. I've found the following bug. I use ViralSwitch in my UITable and have some cells for more than one screen. When I switched on the top switcher and scrolled table to bottom and again to top - border of switcher disappeared.
I've fix this by changing one string of code:
AMViralSwitch.m:- (void)switchChanged:
Line 80
old: self.layer.borderWidth = 0;
new: self.layer.borderWidth = 1;
And result after scrolling:
I don't know the reason of setting border to 0, but changing this code will fix bug that I've found
The text was updated successfully, but these errors were encountered:
Hello. I've found the following bug. I use ViralSwitch in my UITable and have some cells for more than one screen. When I switched on the top switcher and scrolled table to bottom and again to top - border of switcher disappeared.
I've fix this by changing one string of code:
AMViralSwitch.m:- (void)switchChanged:
Line 80
old: self.layer.borderWidth = 0;
new: self.layer.borderWidth = 1;
And result after scrolling:
I don't know the reason of setting border to 0, but changing this code will fix bug that I've found
The text was updated successfully, but these errors were encountered: