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 ...
1
vote
1answer
3k views
Unused Entity Issue: Expression result unused XCode 4
Have the following code and get the above error at the xs in the for statement initilization. Wasn't getting it in Xcode 3, just showed up when I installed Xcode 4 today. xs is a
int xs = 0;
for (xs; ...
0
votes
0answers
123 views
“Unused Entity Issue, Expression result unused” warning using xCode 4.2
Installed xCode 4.2 and attempted to build when I received the "Unused Entity Issue, Expression result unused" warning. Any ideas why I would receive this warning on this line "ui8Buff [i+tot] = ...
0
votes
2answers
100 views
Unused variable & path
I keep banging my head on the keyboard... why do I get these warnings? :
Unused variable '*'
Unused variable 'path'
-(IBAction)pushGenerate {
NSString *title = nil;
NSString *path = nil;
static ...
0
votes
1answer
354 views
issues with “imagePickerController: didFinishPickingMediaWithInfo:”
I keep getting an unused variable warning. I'm trying to have a modal screen appear, where a user selects a photo, and I want to use that image in an UIImageView.
Not sure if this is enough info but ...