再次快速提问。当我presentViewController
过去在我当前的视图控制器之上展示一个新的视图控制器时,它是全屏的。如何让它呈现特定的尺寸?或者我应该使用其他方法。
代码:
- (IBAction)showProfile:(id)sender {
ProfileView *profileTop = [[ProfileView alloc] init];
profileTop.delegate = self;
[self presentViewController:profileTop animated:YES completion:nil];
}