changed git call from https to git readonly
[atutor.git] / mods / atsocial_iphone_app / Classes / ContactsViewController.m
1 //
2 //  ContactsViewController.m
3 //  ATutor
4 //
5 //  Created by Quang Anh Do on 03/07/2010.
6 //  Copyright 2010 Quang Anh Do. All rights reserved.
7 //
8
9 #import "ContactsViewController.h"
10 #import "Contact.h"
11 #import "CommonFunctions.h"
12 #import "ContactsDataSource.h"
13
14 @implementation ContactsViewController
15
16 - (void)dealloc {
17         [super dealloc];
18 }
19
20 - (id)init {
21         if (self = [super init]) {
22                 self.title = TTLocalizedString(@"Contacts", @"");
23                 self.autoresizesForKeyboard = YES;
24         }
25         
26         return self;
27 }
28
29 - (void)loadView {
30         [super loadView];
31         
32         self.dataSource = [[ContactsDataSource alloc] init];
33 }
34
35 @end