Tagged Questions

4
votes
4answers
1k views

Memory Usage on convenience method vs init method

Recently when I looked into iPhone memory management, I tried to compare the convenience method and init method on the same object. For example, I have UIImageView where it displays a downloaded ...
3
votes
2answers
1k views

What is the definition of Convenience Method in regards to Objective C?

In most languages I have dealt with, one something is called a convenience method, it means that the method does some small task that gets done very frequently, and therefore it is more convenient to ...
1
vote
4answers
129 views

On lazy instantiation and convenience methods

Assume you have a Singleton Constants class, instance of which you'd like to use throughout your application. In someClass, therefore we can reference [Constants instance] someCleverConstant]; ...
0
votes
2answers
342 views

Memory management in iOS / ManagedObjectContext

Looks like I did not understand memory management in Objective C... sigh. I have the following code (note that in my case, placemark.thoroughfare and placemark.subThoroughfare are both filled with ...