菜鸟教程小白 发表于 2022-12-12 16:09:32

ios - 使用 UIWebView 和/或 UITableView 创建下拉效果


                                            <p><p>在 Wikipedia 的移动应用程序中,它们具有下拉效果,如果您单击该行,它会打开该行的内容并将其插入到页面中。例如,行可能是职业、商业生活和个人生活,如果单击职业行,它会在职业和商业生活行之间插入职业内容。如果您再次单击“职业”行,则“职业”内容会消失,您将回到仅一行。我希望我的内容采用 HTML 格式,所以我假设我需要以某种方式使用 UIWebView 执行此操作,可能与 UITableView 结合使用。我该如何创造这样的效果?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你为什么不使用 UIActionSheet....尝试类似...</p>

<pre><code>UIActionSheet *actionSheet = [ initWithTitle:nil
                                                      delegate:self
                                             cancelButtonTitle:@&#34;Cancel&#34;
                                        destructiveButtonTitle:nil
                                             otherButtonTitles:@&#34;Take photo&#34;,@&#34;Choose existing&#34;, nil];



            actionSheet.actionSheetStyle=UIActionSheetStyleBlackTranslucent;

          inView:self.view animated:YES]; //sender is the cell
</code></pre>

<p>也在委托(delegate)方法中实现 Action .....</p>

<pre><code>-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{



    if(buttonIndex==0)
    {
    // blah blah
    }
else if(buttonIndex==1)
    {
    //sec index action...
    }
}
</code></pre>

<p>你会得到类似......
<img src="/image/hHTyt.png" alt="enter image description here"/> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用 UIWebView 和/或 UITableView 创建下拉效果,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19805752/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19805752/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用 UIWebView 和/或 UITableView 创建下拉效果