objective-c - copyWithZone 被调用
<p><p>所以我有 2 个对象。 </p>
<pre><code>Library.h:
NSString *name;
Book *book;
Book.h:
NSString *title
NSString *author;
</code></pre>
<p>属性全部设置为(readwrite,copy)</p>
<pre><code>ViewController.h:
Library *library;
Book *book;
ViewController.m:
library = [ init];
book = [init];
//The fallowing all works
library.name = @"Library Name";
book.title = @"book Title";
book.author = @"book author";
//The fallowing crashes my app
library.book = book;
</code></pre>
<p>如何将 Book 封装在库对象中?</p>
<p>调试器给了我休闲错误。 </p>
<p>[库 copyWithZone:]: 无法识别的选择器</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>正在调用 -copyWithZone: 选择器,因为您将对象分配给标记为(复制)的属性。将其标记为 (copy) 会告诉编译器以您的名义创建一个 setter,该 setter 会尝试制作所分配对象的副本。</p>
<p>您需要将您的属性标记为 (readwrite, retain),以便您保留现有的 Book 实例而不是复制,或者您需要为 Book 类实现 NSCopying 协议(protocol)。这是 Apple 关于 NSCopying 的文档:</p>
<p> <a href="http://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSCopying_Protocol/Reference/Reference.html%23//apple_ref/doc/uid/TP40003777" rel="noreferrer noopener nofollow">http://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSCopying_Protocol/Reference/Reference.html%23//apple_ref/doc/uid/TP40003777</a> </p>
<p>是否更改属性属性或采用 NSCopying 协议(protocol)取决于您是否确实需要复制被分配的对象(通常仅在被分配的对象是可修改的并且可能被调用者或其他人更改时才需要),或者可以只保留对现有对象的引用(被认为是正常情况)。</p></p>
<p style="font-size: 20px;">关于objective-c - copyWithZone 被调用,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/4351053/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/4351053/
</a>
</p>
页:
[1]