Tagged Questions

14
votes
3answers
2k views

How to detect unused methods and #import in Objective-C

After working a long time on an iPhone app, I realized that my code it's quite dirty, containing several #import and methods that are not called or useful at all. I would like to know if there's any ...
0
votes
3answers
323 views

Objective-C - Do I need to de-alloc a retained property that isn't used?

If I have a custom view controller class that I want to reuse but when used in one instance has a retained property that isn't actually used during the view's lifecycle, do I need to release it in ...