phonegap

 

iPhone: Get number of contacts

Page history last edited by Shazron Abdullah 3 mos ago

    function contactsCount(){
      debug.log("contactCount");
      navigator.ContactManager.contactsCount(showContactsCount);
    }
        
    function showContactsCount(count){
                alert("Number of contacts: " + count);
    }

Comments (0)

You don't have permission to comment on this page.