あるViewControllerにジェスチャーを実装したいのですが、

UISwipeGestureRecognizer *gesture = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(getSwipe:)];

gesture.direction = UISwipeGestureRecognizerDirectionDown;

[self.view addGestureRecognizer:gesture];

これらのメソッドをこのViewControllerが持つ自作のGestureManagerというクラスに持たせることは可能でしょうか。