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
2answers
23 views

Why am I getting an 'Expression Result Unused' warning?

I have a piece of code that is giving me a 'Expression Result Unused' warning. I have no idea what I'm doing wrong. Please help! if(task.typeForThis.typeID == @"DivisionAT"){ ...
0
votes
3answers
334 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 ...