代码之家  ›  专栏  ›  技术社区  ›  Duck

iPhone-调整uiactionsheet的大小

  •  1
  • Duck  · 技术社区  · 14 年前

    我需要展示一个将显示10个按钮的uiactionsheet。当我在ipad上这样做的时候,uiactionsheet显示在一个垂直很长的弹出窗口上(不是很漂亮)。是否可以将uiactionsheet大小指定为最大大小?

    我试过这个

    myActionSheet.frame = CGRectMake(0,0,300,300);
    myActionSheet.bounds = CGRectMake(0,0,300,300);
    

    也试着把这些线放进去

    - (void)willPresentActionSheet:(UIActionSheet *)actionSheet {
    

    没有成功。

    有什么线索吗?

    谢谢

    2 回复  |  直到 14 年前
        1
  •  2
  •   Robert Höglund    14 年前

    UIActionSheet

    modalInPopover YES UIViewController

        2
  •  0
  •   Mejdi Lassidi    14 年前

    推荐文章