我刚开始学习ios编程。
我想在我的应用程序启动时以特定大小显示模式窗口。所以,在我的视图控制器中,我编写了这段代码。
-(void)viewDidAppear:(BOOL)animated{
ModalViewController *modal;
modal = [[ModalViewController alloc] init];
modal.modalPresentationStyle = UIModalPresentationFormSheet;
modal.view.frame = CGRectMake(0, 0, 100, 100);
[self presentViewController:modal animated:YES completion:nil];
}
使用此代码,模态窗口会显示出来,但是,它会以适合屏幕大小的大小显示。
我希望我的模态窗口以我设置的大小显示。
我怎样才能让它工作?
非常感谢您提前!!