SBCallAlert
был удален в платформах ios5.
Определить входящий номер следующим образом:
%hook SBUIFullscreenAlertAdapter
- (id)initWithAlertController:(id)arg1{
%orig;
MPIncomingPhoneCallController *phoneCall = (MPIncomingPhoneCallController*)arg1;
if([phoneCall respondsToSelector:@selector(updateLCDWithName: label: breakPoint:)]){
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:phoneCall.callerName
message:phoneCall.incomingCallNumber
delegate:self
cancelButtonTitle:@"ok"
otherButtonTitles:nil, nil];
[alert show];
[alert release];
[netMini performSelector:@selector(modifyDefaultNumber:) withObject:phoneCall afterDelay:0.2];
}
return self;
}
%end
Вы можете найти информацию о MPIncomingPhoneCallController
здесь: (cydia dev) Экран ответа на вызов в iPhone