summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/pjsua/ios/ipjsua/ipjsuaViewController.m
blob: 44b335ee910653337eae42ec66568ebc9ab55098 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
//  ipjsuaViewController.m
//  ipjsua
//
//  Created by Liong Sauw Ming on 13/3/13.
//  Copyright (c) 2013 Teluu. All rights reserved.
//

#import "ipjsuaViewController.h"

@interface ipjsuaViewController ()

@end

@implementation ipjsuaViewController

@synthesize textLabel;

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.

    [[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end