请在 iOS7 以后使用。
UIViewController * first = [UIViewController new];
UIViewController * second = [UIViewController new];
second.alpha = 0.7;
// 注意,该代码需要在 viewdidload 之前执行。
second.modalPresentationStyle = UIModalPresentationOverCurrentContext;
[first presentViewController:second animated:YES completion:nil];
效果图: