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
You have the option for corner swipe buttons
cell.layer.cornerRadius = 50
cell.backgroundColor = UIColor.gray
cell.clipsToBounds = true
cell.swipeBackgroundColor = UIColor.gray
BUT how can I color the "swipeBackgroundColor" from both sides?
I have this result!
The text was updated successfully, but these errors were encountered:
And when I add this:
cell.layer.masksToBounds = false;
The button has not round corners anymore.
I want to add this because I want to add shadow around the cell.
cell.layer.shadowOpacity = 0.18;
cell.layer.shadowOffset = CGSizeMake(0, 2);
cell.layer.shadowColor = [UIColor blackColor].CGColor;
You have the option for corner swipe buttons
cell.layer.cornerRadius = 50
cell.backgroundColor = UIColor.gray
cell.clipsToBounds = true
cell.swipeBackgroundColor = UIColor.gray
BUT how can I color the "swipeBackgroundColor" from both sides?
I have this result!
The text was updated successfully, but these errors were encountered: