Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. // objective C
  2. if (@available(iOS 13.0, *)) {
  3. cell.backgroundColor = [UIColor systemBackgroundColor];
  4. } else {
  5. cell.backgroundColor = [UIColor whiteColor];
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement