Declare functions before usage

This commit is contained in:
Yann Diorcet 2012-09-13 14:48:05 +02:00
parent ecc70d6ecb
commit 8b850f0eb1
2 changed files with 5 additions and 0 deletions

View file

@ -27,6 +27,9 @@
@implementation ContactsTableViewController
static void sync_address_book (ABAddressBookRef addressBook, CFDictionaryRef info, void *context);
#pragma mark - Lifecycle Functions
- (void)initContactsTableViewController {

View file

@ -22,6 +22,8 @@
@implementation FastAddressBook
static void sync_address_book (ABAddressBookRef addressBook, CFDictionaryRef info, void *context);
+ (NSString*)getContactDisplayName:(ABRecordRef)contact {
NSString *retString = nil;
if (contact) {