菜鸟教程小白 发表于 2022-12-13 09:07:43

iphone - UINavigationBar 中的事件指示器


                                            <p><p>我已经阅读了一些关于这个特定主题的答案,但由于某种原因,我的代码似乎不起作用。它在 UISearchBarDelegate 委托(delegate)方法 <code>-(void)searchBarSearchButtonClicked:(UISearchBar *)searchBar</code></p>

<pre><code>UIActivityIndicatorView *activityIndicator = [ initWithFrame:CGRectMake(0, 0, 20, 20)];
UIBarButtonItem *activity = [ initWithCustomView:activityIndicator];
[ setRightBarButtonItem:activity];
;
;
</code></pre>

<p>非常感谢任何帮助或建议!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我相信 <code>UIActivityIndi​​catorView</code> 的指定初始化程序是 <code>initWithActivityIndi​​catorStyle:</code>。尝试像这样创建 <code>activityIndi​​cator</code>。</p>

<pre><code>UIActivityIndicatorView *activityIndicator = [ initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - UINavigationBar 中的事件指示器,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/7426368/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/7426368/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - UINavigationBar 中的事件指示器