如何在 Objective-c 中自动释放

发布于 2024-09-13 06:02:35 字数 283 浏览 6 评论 0原文

我没有使用自动释放。当我像这样使用代码时,我不知道如何释放 BSPTile

    NSUInteger numbToday = [[dateFormatter stringFromDate:[NSDate date]] intValue];
    BSPTileView *tile = [gridView.subviews objectAtIndex: 0];
    tile.comparedValue = 0;

BSPTileView 是 UIView 类。怎么办?请。

I'm not using Autorelease. When I use like this code, I don't know How to release BSPTile

    NSUInteger numbToday = [[dateFormatter stringFromDate:[NSDate date]] intValue];
    BSPTileView *tile = [gridView.subviews objectAtIndex: 0];
    tile.comparedValue = 0;

BSPTileView is UIView Class. How to do ? please.

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

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

发布评论

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

评论(3

我们的影子 2024-09-20 06:02:35

在这种情况下,您不必这样做。 -objectAtIndex: 仅返回数组中该索引处的对象,而不更改其保留计数。

In this case, you don't have to. -objectAtIndex: just returns the object at that index in the array, without changing its retain count.

唔猫 2024-09-20 06:02:35

你不知道。您没有通过包含 newallocretaincopy 的方法调用接收此指针,因此您不负责释放(或自动释放)指针。

如果您的应用程序的结构使得您必须在此处发布它,那么您在其他地方做错了。

You don't. You did not receive this pointer via a method call that contains new, alloc, retain, or copy, so you are not responsible for releasing (or autoreleasing) the pointer.

If your application is structure such that you have to release it here, then you've done something wrong somewhere else.

地狱即天堂 2024-09-20 06:02:35

如果您将 BSPTileView 插入视图层次结构中,则层次结构会为您管理对象。从子视图数组中获取对象不会更改保留计数。不转移任何责任。

If you have your BSPTileView inserted in a view hierarchy, the hierarchy takes care of managing the object for you. Taking the object from the subviews array does not change the retain count. No responsibility is transfered.

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