What does 'release' means in this situation on iPhone?

前端 未结 2 973
野的像风
野的像风 2021-01-21 02:35

I want to ask a stupid question about the iPhone application. I am the green of the iPhone app. I read the following code in the Apple website.

    MyViewControl         


        
2条回答
  •  礼貌的吻别
    2021-01-21 02:58

    When you alloc something, the object you get will have a retain count of 1 - this means that this object is currently being used by someone, so it should not be removed from memory. If you call retain on an object it will increase the retain count, meaning the object is being used by 2 things. If the retain count reaches 0, it implies that the object is no longer being used by anything and it can be removed from memory. You can decrease an object's retain count by calling release on the object.

    In your example, aViewController is alloc'd and after line 1 has a retain count of +1.

    It is then set as the view controller in line 2. This method is therefor taking ownership of the object, so should retain it for its own use.

    Line 3, we don't want anything more to do with the view controller, so we release our hold of it. The retain count decreases by one - and it is now up to the new owner to release it when it is finished with it.

    You might find it helpful to read through the memory management section of this tutrial

提交回复
热议问题