Tagged Questions

3
votes
1answer
215 views

Clang static analyzer on iPhone app showing errors with latest version

When I run my code through the version 252 checker binary, there are no analysis errors. However, when I change to use the latest 253 checker, it returns a slew of errors, all of which do not make ...
3
votes
1answer
247 views

LLVM/Clang bug found in convenience method and NSClassFromString(…) alloc/release

I am analyzing Objective-C iPhone project with LLVM/Clang static analyzer. I keep getting two reported bugs, but I am pretty sure that the code is correct. 1) Convenience method. + (UILabel ...
2
votes
2answers
122 views

Any good tutorials on the Build and Analyze feature in Xcode?

I would like to know is there any tutorial to use xcode build and anylyse tool... pls provide me links which points on it. Thanks for any help
2
votes
1answer
382 views

Xcode 3.2.4 Analyzer skipped this file?

Having just upgraded to iOS 4.1 (Xcode 3.2.4) I am getting warnings when using the static analyser that I don't think I was previously getting when using 3.2.3 Now the project compiles just fine, ...
1
vote
2answers
154 views

Static Analyzer showing wrong leak?? (XCode 4.0, iOS 4.3 and above)

Happy November to all, Well I tried Xcode Build and analyze on my project, and it showed some unusual leaks, which I couldn't quite accept with my knowledge of Objective C. So I decided to put up a ...
1
vote
1answer
111 views

Static Analyzer says I have a leak…why?

I think this code should be fine but Static Analyzer doesn't like it. I can't figure out why and was hoping that someone could help me understand. The code works fine, the analyzer result just bugs ...
1
vote
1answer
144 views

Why's the Build and Analyze command not finding obvious memory management errors?

For some reason, the Clang Static Analyzer in my Xcode doesn't complain about anything. I made big memory management mistakes to try it (alloc and no release), but it never finds them and doesn't ...
0
votes
1answer
169 views

Don't understand memory analysis

I have upgraded my XCode to versio 3.2.3 to support iOS4 on my iphone project. using the static analyser I checked for memory management problems. In one of my routines I get the following problem: ...
0
votes
3answers
191 views

Figuring Out Memory Leaks without Clang

I'm trying to see if I can find some leaks myself in Apple's TopSongs app. Can someone help me out in at least one and how to identify what is in the Leaks reports and how I can get an idea on finding ...
0
votes
1answer
260 views

How to get this Apple Script for Clang Static Analyzer working with Xcode?

Here's a script where lots of people say it's good: http://allancraig.net/blog/?p=381 But I can't get it to work. What are the steps I have to do with the Xcode script editor, to run that script? I ...