3
votes
Is there a way to suppress warnings in Xcode?
Suppressing that particular warning is not safe. The compiler needs to know the types of the arguments and returns to a method to generate correct code.
For example, if you're calling a …
3
votes
When to call self.myObject vs just calling myObject in Objective-C
Hrm, I cannot say that I agree with Mark or Cinder6.
Well, I agree in the first part. :-) self.foo is invoking the -foo method. Plain foo is accessi …
2
votes
Xcode source automatic formatting
That's Control- I.
Or for low-tech, cut and then paste. It'll reformat on paste.
…
1
vote
Saving Interface Builder Changes when building in XCode
Are you perhaps running 32 bit while he is running 64 bit?
I seem to recall an issue with IB's AppleEvent-based communication with Xcode in 64 bit.
…
