iOS 5 - CTCallCenter não funciona para mim

Meu celular: iOS 5.1.1 Jailbroken usando Absynth2

O que estou tentando fazer:detectar uma chamada recebida ou quando uma chamada está sendo discada ...

Ok, aqui está o meu código que eu coloquei dentro doAppDelegate debaixodidEnterBackground, também tentou emdidResignActive - Eu não recebo nenhum erro, mas também não obtenho nenhum resultado.

callCenter = [[CTCallCenter alloc] init];   
[callCenter setCallEventHandler:^(CTCall *call) {
    NSDictionary *dict = [NSDictionary dictionaryWithObject:call.callState forKey:@"callState"];
    [[NSNotificationCenter defaultCenter] postNotificationName:@"CTCallStateDidChange" object:nil userInfo:dict];
    NSLog(@"state changed on call: %@", call);
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(callReceived:) name:CTCallStateIncoming object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(callEnded:) name:CTCallStateDisconnected object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(callConnected:) name:CTCallStateConnected object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(callDial:) name:CTCallStateDialing object:nil];

qualquer ajuda é apreciada. obrigado!