在StoryBoard中,我们可以如下进行可视化设置
我们如何使用.Xib/nib
文件做同样的事情?
[self presentViewController:self.infoController animated:YES completion:nil];
上面的代码只是使用模式样式,但是如何将过渡样式设置为Partial Curl。
最佳答案
您可以使用以下代码执行此操作:
#import "InfoController.h"
- (IBAction)goToSecond:(id)sender {
InfoController *vc = [[InfoController alloc] initWithNibName:@"InfoController" bundle:nil];
vc.modalTransitionStyle = UIModalTransitionStylePartialCurl;
[self presentViewController:vc animated:YES completion:^{
//completion code here
}];
}
关于ios - 通过编程/代码设置过渡到部分 curl ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14909197/