IOS7, 8-mode translucent pop-up box, ios7 mode translucent pop-up
// Jump Method implementation in source Controller
MKDialogController * controller = [[MKDialogController alloc] init];
Controller. modalTransitionStyle = UIModalTransitionStyleCrossDissolve; // animation effect during jump
If ([[UIDevice currentDevice]. systemVersion floatValue]> = 8.0 ){
Controller. providesPresentationContextTransitionStyle = YES;
Controller. definesPresentationContext = YES;
Controller. modalPresentationStyle = UIModalPresentationOverCurrentContext;
[Self presentViewController: controller animated: YES completion: nil];
} Else {
Self. view. window. rootViewController. modalPresentationStyle = UIModalPresentationCurrentContext;
[Self presentViewController: controller animated: NO completion: nil];
Self. view. window. rootViewController. modalPresentationStyle = UIModalPresentationFullScreen;
}