I am trying to intercept incoming SMS in iOS 5 and the code is
HOOK(CKSMSService,_receivedMessage$replace$postInternalNotification$,void,CKSMSRecordRef arg,BOOL arg2,BOOL arg3){
//NSLog(@"received message %@", message);
CALL_ORIG(CKSMSService,_receivedMessage$replace$postInternalNotification$,arg,arg2,arg3);
}
this code works but a Notification Popup still come , so how can i block this popup to appear.