blob: 44b335ee910653337eae42ec66568ebc9ab55098 [file] [log] [blame]
Tristan Matthews0a329cc2013-07-17 13:20:14 -04001//
2// ipjsuaViewController.m
3// ipjsua
4//
5// Created by Liong Sauw Ming on 13/3/13.
6// Copyright (c) 2013 Teluu. All rights reserved.
7//
8
9#import "ipjsuaViewController.h"
10
11@interface ipjsuaViewController ()
12
13@end
14
15@implementation ipjsuaViewController
16
17@synthesize textLabel;
18
19- (void)viewDidLoad
20{
21 [super viewDidLoad];
22 // Do any additional setup after loading the view, typically from a nib.
23
24 [[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
25}
26
27- (void)didReceiveMemoryWarning
28{
29 [super didReceiveMemoryWarning];
30 // Dispose of any resources that can be recreated.
31}
32
33@end