zoukankan      html  css  js  c++  java
  • UINavigatorController 里面的下的模式视图不能半透明下面的视图。 不及格的程序员

    RootViewController.h 作为UINavigatorController根视图,模式弹出新窗口时,新窗口透明的部分无效 (设置UINavigatorController的modalPresentationStyle = UIModalPresentationCurrentContext即可)。


    1 untitled *vc = [[untitled alloc] initWithNibName:@"untitled" bundle:nil];
    2     self.modalPresentationStyle = UIModalPresentationCurrentContext;
    3     vc.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
    4     //[self presentModalViewController:vc animated:YES];
  • 相关阅读:
    Java的常用API之System类简介
    Java的常用API之Date类简介
    Java的常用API之Object类简介
    数据库知识总结(全)
    学习:浏览器访问网站的总流程
    学习:TCP/UDP协议分析(TCP四次挥手)
    学习:TCP/UDP协议分析(TCP三次握手)
    学习:ICMP协议
    实现:ARP探测存活主机
    学习:ARP协议/数据包分析
  • 原文地址:https://www.cnblogs.com/ioriwellings/p/2445655.html
Copyright © 2011-2022 走看看