Enable zoom support

This commit is contained in:
Pierre-Eric Pelloux-Prayer 2012-04-25 11:06:16 +02:00
parent 0e280b30a2
commit fa44105ed4
2 changed files with 5 additions and 0 deletions

View file

@ -24,6 +24,7 @@
#import "CallDelegate.h"
#import "LinphoneManager.h"
#import "UILightButton.h"
#import "VideoZoomHandler.h"
#define BJ_RING_FILE "01"
@ -40,6 +41,7 @@
UIDigitButton* openDoor;
LinphoneChatRoom * chatRoom;
VideoZoomHandler* videoZoomHandler;
}
@property (nonatomic, retain) IBOutlet UIView* videoView;

View file

@ -80,6 +80,9 @@
[self createGradientForButton:takeCall withTopColor:col1 bottomColor:col2];
}
videoZoomHandler = [[VideoZoomHandler alloc] init];
[videoZoomHandler setup:videoView];
}
- (void)viewDidUnload