zoukankan      html  css  js  c++  java
  • testVC.modalPresentationStyle = UIModalPresentationFormSheet; 更改 VC大小

    本文转载至 http://www.cocoachina.com/bbs/simple/?t31199.html

    TestViewController *testVC = [[TestViewController alloc] initWithNibName:@"TestViewController" bundle:nil];
        testVC.modalPresentationStyle = UIModalPresentationFormSheet;
        testVC.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
        [self presentModalViewController:testVC animated:YES];
        testVC.view.superview.frame = CGRectMake(0, 0, 649, 397);//it's important to do this after presentModalViewController
        testVC.view.superview.center = self.view.center;

    注意:/it's important to do this after presentModalViewController

     TestViewController *testVC = [[TestViewController alloc] initWithNibName:@"TestViewController" bundle:nil];
        testVC.modalPresentationStyle = UIModalPresentationFormSheet;
        testVC.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
        [self presentModalViewController:testVC animated:YES];
        testVC.view.superview.frame = CGRectMake(0, 0, 649, 397);//it's important to do this after presentModalViewController
    ....... 

    K,问题解决。。。还一定要在[self presentModalViewController:testVC animated:YES];之后设置frame的大小!!

  • 相关阅读:
    1725最少硬币问题(DP)
    3358高数Umaru系列(9)——哈士奇(DP)
    1018骨牌铺方格(分治算法)
    3664顺序表应用7:最大子段和之分治递归法(分治算法)
    1722整数因子分解问题(分治算法)
    剑指offer JZ-11
    剑指offer JZ-10
    剑指offer JZ-9
    剑指offer JZ-8
    剑指offer JZ-7
  • 原文地址:https://www.cnblogs.com/Camier-myNiuer/p/3818717.html
Copyright © 2011-2022 走看看