Guest User

Untitled

a guest
Jan 18th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. func checkBtn () {
  2. // btnDone.isEnabled = self.contactSelectViewList.count > 0 ? true : false
  3. if self.contactSelectViewList.count > 0 {
  4. btnDone.isEnabled = true
  5. }
  6. else {
  7. if arrEmployeeCount?.count > 0 {
  8. btnDone.isEnabled = true
  9. }
  10. else {
  11. btnDone.isEnabled = false
  12. }
  13. }
  14. }
Add Comment
Please, Sign In to add comment