菜鸟教程小白 发表于 2022-12-13 11:04:18

ios - 静态库,可以访问 self.view


                                            <p>我正在开发一个静态库,我需要在其中访问 self.view<br>我试图通过让调用者将其作为参数传递来为调用者提供对 self.view 的引用<br><br>在头文件中.h<br><pre><code>- (void) myM:(UIView *)myView;
</code></pre><br>但这给了我一个错误:<br><br> <blockquote>
<p>expected a type</p>
</blockquote><br><br>请任何人都可以帮忙,<br><br>谢谢</p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p>看起来您只需要导入 UIKitheader 。在头文件的顶部添加:<br><pre><code>#import &lt;UIKit/UIKit.h&gt;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 静态库,可以访问 self.view,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/9049247/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/9049247/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 静态库,可以访问 self.view