ios - 下面的 NSObject 代码是多余的吗?
<p><p>我正在学习这里的教程:<a href="http://blog.soff.es/archiving-objective-c-objects-with-nscoding" rel="noreferrer noopener nofollow">http://blog.soff.es/archiving-objective-c-objects-with-nscoding</a>
创建一个可以在回合制游戏中保存我的比赛数据的 NSObject。</p>
<p>但是我在 .m 文件中收到此警告:</p>
<pre><code>Autosynthesized property 'title' will use synthesized instance variable '_title', not existing instance variable 'title'
</code></pre>
<p>所以我的问题是如果(在下面的代码中)我删除括号之间的代码会丢失一些重要的东西吗?</p>
<pre><code> @interface Note : NSObject <NSCoding> {
NSString *title;
NSString *author;
BOOL published;
}
@property (nonatomic, copy) NSString *title;
@property (nonatomic, copy) NSString *author;
@property (nonatomic) BOOL published;
@end
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您不应该显式声明 ivars,因为属性会自动合成它们自己的 ivars,但名称略有不同。显式 ivars 没有意义,不会被属性使用。当您打算设置属性时错误地使用您的 ivars 时,拥有它们只会导致错误。</p>
<p>警告通过让您知道会有两个相似的 ivars 来指出这一点。</p>
<p>您的代码应该是:</p>
<pre><code> @interface Note : NSObject <NSCoding>
@property (nonatomic, copy) NSString *title;
@property (nonatomic, copy) NSString *author;
@property (nonatomic) BOOL published;
@end
</code></pre>
<p>这样可以避免以下错误:</p>
<pre><code>title = @"Some Title"; // sets your ivar, not the property
</code></pre>
<p>相对于:</p>
<pre><code>_title = @"Some Title"; // directly sets the property's ivar
</code></pre>
<p>当然你应该使用这个属性:</p>
<pre><code>self.title = @"Some Title"; // uses the property methods
</code></pre></p>
<p style="font-size: 20px;">关于ios - 下面的 NSObject 代码是多余的吗?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/32080374/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/32080374/
</a>
</p>
页:
[1]