ios - 忘记调用 super 时收到警告
<p><div>
<aside class="s-notice s-notice__info post-notice js-post-notice mb16"role="status">
<div class="d-flex fd-column fw-nowrap">
<div class="d-flex fw-nowrap">
<div class="flex--item wmn0 fl1 lh-lg">
<div class="flex--item fl1 lh-lg">
<b>这个问题在这里已经有了答案</b>:
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您可以通过在接口(interface)文件中的方法声明后面添加 <code>__attribute__((objc_requires_super))</code> 来实现此功能</p>
<pre><code>- (void)myBaseClassMethod __attribute__((objc_requires_super));
</code></pre>
<p>将此添加到方法声明后,您将在所有子类中收到以下警告:</p>
<p> <img src="/image/U2zIy.png" alt="enter image description here"/> </p></p>
<p style="font-size: 20px;">关于ios - 忘记调用 super 时收到警告,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/23672726/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/23672726/
</a>
</p>
页:
[1]