public ContactsViewController() : base()
        {
            _contacts = new List <ABPerson> ();

            _numbers = new List <string>();

            _loading = new LoadingHUDView("Loading", "Updating Contacts List...");
        }
Esempio n. 2
0
 void Initialize()
 {
     _loading = new LoadingHUDView("Loading iMeet", "");
 }
 public ContactsTableViewDelegate(ContactsViewController controller, List <ABPerson> contacts)
 {
     _controller = controller;
     _contacts   = contacts;
     _loading    = new LoadingHUDView("Loading", "Trying to create Meeting...");
 }