使用 NSString 变量设置 NSTextView 的文本,考虑引用计数

发布于 2024-08-21 10:03:39 字数 351 浏览 9 评论 0原文

我的 .m 文件中的函数中有以下代码:

desc = [我的executeFunction]; // desc 由executeFunction 返回
数据 = [desc objectAtIndex:0]; // 数据在.h文件中声明
data2 = [desc objectAtIndex:1];
[myTextField setString:数据]; // myTextField 连接到 IB 中的 NSTextView
[myTextField setString:data2];

我应该如何写第四行和第五行?如何/在哪里发布数据和数据2?

I have the following code in a function in my .m file:

desc = [my executeFunction]; // desc is returned by executeFunction
data = [desc objectAtIndex:0]; // data is declared in the .h file
data2 = [desc objectAtIndex:1];
[myTextField setString:data]; // myTextField is connected to an NSTextView in IB
[myTextField setString:data2];

How am I supposed to be writing the 4th and 5th lines? How / where do I release data and data2?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

回忆凄美了谁 2024-08-28 10:03:39

你不知道。您尚未从选择器包含 allocnew的方法接收到 datadata2 copy 或名称包含 Create 的函数,因此您不负责释放它们。

看看 http://boredzo.org/cocoa-and-cocoa-touch -简介/

You don't. You haven't received data or data2 from a method with a selector containing alloc, new or copy or a function with a name containing Create, so you are not responsible for releasing them.

Have a look at http://boredzo.org/cocoa-and-cocoa-touch-intro/.

季末如歌 2024-08-28 10:03:39

修改 Cocoa 内存管理指南并确定这种情况下是否需要释放。关于 retainrelease 模式有非常具体但非常简单的规则。记住这些规则(双关语)。

Revise the Cocoa Memory Management Guidelines and determine whether releasing is necessary in this case. There are very specific, yet very simple rules regarding a retain and release pattern. Commit these rules to memory (pun intended).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文