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];
  • 相关阅读:
    HDU 3336 Count the string (KMP next数组运用——统计前缀出现次数)
    HDU 2594 Simpsons’ Hidden Talents (KMP——前缀后缀最长公共串)
    2015 Multi-University Training Contest 7 1011(DP)
    2015 Multi-University Training Contest 7 1005
    2015 Multi-University Training Contest 7 1007(DP)
    poj 2342 Anniversary party (树形dp)
    POJ 1611 The Suspects (并查集)
    poj 2236 Wireless Network(并查集)
    hdu 3591 The trouble of Xiaoqian(多重背包)
    hdu 2079 选课时间(母函数)
  • 原文地址:https://www.cnblogs.com/ioriwellings/p/2445655.html
Copyright © 2011-2022 走看看