English 中文(简体)
在目标C正确宣布和释放物体
原标题:Where to correctly declare and release Objects in Objective C

我要从具有经验的人那里知道,宣布、初步确定和释放物体的最佳位置。

所有物体,包括NSString,是否总是在标题档案中申报?

是否像头盔档案中公开的变数一样?

如果我以某种方法宣布物体或使用物体,该物体是否以这种方法或交易方法释放?

如果在方法上只需要一个物体,该物体是否应在方法内宣布和释放?

这很简单,但头盔和执行档案风格对我来说是新的。

关于

最佳回答

这完全取决于你试图做什么。 这些文件很好地涵盖了你要求的许多内容。

我建议阅读Objective-C Concept Guide,然后将问题更具体一些。

问题回答

暂无回答




相关问题
passing form variables into a url with php

I have the following form which allows a user to select dates/rooms for a hotel reservation. <form action="booking-form.php" method="post"> <fieldset> <div class="select-date">...

Error: "Cannot modify the return value" c#

I m using auto-implemented properties. I guess the fastest way to fix following is to declare my own backing variable? public Point Origin { get; set; } Origin.X = 10; // fails with CS1612 Error ...

C-style Variable initialization in PHP

Is there such a thing as local, private, static and public variables in PHP? If so, can you give samples of each and how their scope is demonstrated inside and outside the class and inside functions?

C#/.NET app doesn t recognize Environment Var Change (PATH)

In my C# app, I am programmatically installing an Oracle client if one is not present, which requires adding a dir to the PATH system environment variable. This all works fine, but it doesn t take ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

How to dynamically generate variables in Action Script 2.0

I have a for loop in action script which I m trying to use to dynamically create variable. Example for( i = 0 ; i &lt 3 ; i++) { var MyVar+i = i; } after this for loop runs, i would like to ...

热门标签