zoukankan      html  css  js  c++  java
  • 关于ios 8 7 下的模态窗口大小的控制 代碼+場景(mainstoryboard)( Resizing UIModalPresentationFormSheet )

    1 代碼

    UIViewController* modalController = [[UIViewController alloc]init];
    modalController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
    modalController.modalPresentationStyle = UIModalPresentationFormSheet;

    //Resizing size
    CGPoint frameSize = CGPointMake([[UIScreen mainScreen] bounds].size.width*0.95f, [[UIScreen mainScreen] bounds].size.height*0.95f);
    CGRect screenRect = [[UIScreen mainScreen] bounds];
    CGFloat screenWidth = screenRect.size.width;
    CGFloat screenHeight = screenRect.size.height;
    if ([[[UIDevice currentDevice]systemVersion] floatValue] >= 8.0 )
    {
    // Resizing for iOS 8
    modalController.preferredContentSize = CGSizeMake(frameSize.x, frameSize.y);
    }
    else
    {
    // Resizing for <= iOS 7
    modalController.view.superview.frame = CGRectMake((screenWidth - frameSize.x)/2, (screenHeight - frameSize.y)/2, frameSize.x, frameSize.y);
    }
    UIViewController *vc = [[[[UIApplication sharedApplication] delegate] window] rootViewController];
    [vc presentViewController:modalController animated:YES completion:nil];

    2 場景

     打開態窗體屬性導航器Show Utilities=》找到show the attributes inspector=》修改Presentation +Content size大小(選中user preferred explicit size

     文件瀏覽器快捷鍵 cmd+0    工具欄(utilities)cmd+alt+0

  • 相关阅读:
    html Table实现表头固定
    Asp.net ORA-12154: TNS: 无法解析指定的连接标识符
    VS加载项目时报错 尚未配置为Web项目XXXX指定的本地IIS
    Sqlserver 导出insert插入语句
    RRAS
    MVC实例应用模式
    MVC概述
    23种设计模式
    XXX系统质量属性
    大型网站架构读后感
  • 原文地址:https://www.cnblogs.com/Rampage/p/4061972.html
Copyright © 2011-2022 走看看