Advertisement
nsocean

HALContact.m

Jul 9th, 2014
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #import "HALContact.h"
  2.  
  3. @interface HALContact ()
  4.  
  5. @end
  6.  
  7. @implementation HALContact
  8.  
  9. - (BOOL)hasMultiplePhoneNumbers
  10. {
  11.     if (self.phoneNumbers.count > 1) {
  12.         return YES;
  13.     } else {
  14.         return NO;
  15.     }
  16. }
  17.  
  18. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement