菜鸟教程小白 发表于 2022-12-12 20:26:36

iphone - uiactionsheet 高度


                                            <p><p>我有一个关于 UIActionSheet 的简单问题!如何设置 UIActionsheet 的高度?我试过 setFrame 和 setBounds 但没有任何效果。我正在使用以下操作表:</p>

<pre><code>NSString *title = UIDeviceOrientationIsLandscape(.orientation) ? @&#34;\n\n\n\n\n\n\n\n\n&#34; : @&#34;\n\n\n\n\n\n\n\n\n\n\n\n&#34; ;
    UIActionSheet *actionSheet = [
                                  initWithTitle:
                                  delegate:self cancelButtonTitle:@&#34;Cancel&#34; destructiveButtonTitle:nil otherButtonTitles:@&#34;Button1&#34;,@&#34;Button2&#34;, nil];
    ;
    //;
    //;
   // ;
    actionSheet.actionSheetStyle = UIActionSheetStyleAutomatic;
    ;
   actionSheet = nil;
</code></pre>

<p>我的问题是操作表高度等于当前 View 的高度。我想根据 UIActionSheet 的内容自动调整高度。</p>

<p>提前致谢,</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><code>UIActionSheet</code> 的默认行为是自动调整到其内容大小。你不应该直接设置 <code>frame</code> 。 </p>

<p>您看到操作表占用了如此多的空间,因为您在标题中插入了一堆换行符,从而迫使标题标签占用了比应有的更多的垂直空间。如果您不希望操作表那么高,请不要这样修改标题。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - uiactionsheet 高度,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10238179/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10238179/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - uiactionsheet 高度