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