3
votes
CPAN/gem-like repository for Objective-C and Cocoa?
Daniel mentioned http://cocoadev.com.
More specifically, check out …
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 …
4
votes
TTPickerTextField DataSource? How do I create my own DataSource?
This is just from looking at the headers, but TTPickerTextField is a subclass of TTSearchTextField, which has this property:
@property(nonatomic,retain) id<TTTableViewDataSource& …
2
votes
1
vote
what does -arrayWithArray actually DO?
No, Cocoa is not open source.
If you have a question, you should just ask it.
This would be one valid way to implement it:
+ (id)arrayWithArray:(NSArray *)array {
…
1
vote
How do I create a mutable array of CGImageRefs?
You can directly add CGImage to NSMutableArray. You will need to cast to (id) to avoid compiler warnings.
CFType is bridged to NSObject. You can send any message NSObject responds to to …
7
votes
#define value in stringFormat ?
You've #defined it as a C string.
If you want it as an Objective-C String, you need
#define kPingServerToSeeIfInternetIsOn @"http://10.0.0.8"
…
0
votes
iPhone - Multiple CGBitmapContextCreateImage Calls - ObjectAlloc climbing
That code overreleases result.
That said, it's likely that the issue is that the UIImage is not getting deallocated, and the UIImage is holding onto the CGImage, and the CGIm …
1
vote
Can I use a memory zone to kill iPhone leaks?
What you're discussing was part of the original thought with zones, but that aspect hasn't worked out so well.
The way to avoid leaking is just to avoid leaking. Free what you malloc, -r …
1
vote
Mac/iPhone: Is there a way to get a thread identifier without using Objective-C?
See pthread_getname_np.
Unfortunately NSThread's name is not currently pushed down to that. The NSThread name is just an ivar, so there will be no way to get at it except th …
2
votes
Examples of interpreters embedded in iPhone Applications?
There's Nu.
Nu is a Lisp-on-ObjC-runtime thing. The link above is to information on iPhone embedding. The langua …
4
votes
iPhone Memory Management: No Need to Clean Up and Release Retained Objects on App Quit?
Yes. Quoting the documentat …
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.
…
2
votes
Do I have to put my application manually into multithreaded-mode if I want to use threads?
It's automatic. In the docs for that method:
If this thread is the first thread
detached in the application, this
method posts the
NSWillBecomeMultiThreadedNotificatio …
