PostViewController * postVC = [[PostViewController alloc] init];
postVC.view.backgroundColor = [[UIColor whiteColor] colorWithAlphaComponent:0.6];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:postVC];
if ([[[UIDevice currentDevice] systemVersion] floatValue]>=8.0) {
nav.modalPresentationStyle=UIModalPresentationOverCurrentContext;
}else{
nav.modalPresentationStyle=UIModalPresentationCurrentContext;
}
[self presentViewController:nav animated:YES completion:nil];