Tagged Questions
The foundationkit tag has no wiki summary.
38
votes
7answers
40k views
How does the NSAutoreleasePool autorelease pool work?
As I understand it, anything created with an alloc, new, or copy needs to be manually released. For example:
int main(void) {
NSString *string;
string = [[NSString alloc] init];
/* use ...
1
vote
1answer
53 views
FoundationKit on gcc/Linux
I am trying to test Objective-C on Linux (Ubuntu 10.04), mainly to decide if it's worth it to get a Mac and XCode. I have to like a language before I seriously consider programming in it (even more so ...
0
votes
1answer
32 views
simultaneous NSURLConnection by using unique delegates for each NSURLConnection
I am try to handle multiple NSURLConnection at the same time by using a different delegate for each connection, for each NSURLConnection I create, I create a new delegate object, but for some reason ...
0
votes
1answer
713 views
OS X: how to watch socket read events with NSRunLoop?
I'm writing a Cocoa app. There is a socket in the application, and whenever the socket becomes readable I want to read data from the socket, process the data, and update the user interface ...
0
votes
2answers
4k views
NSDate -dateWithNaturalLanguageString: on iPhone?
In the iPhone docset for NSDate, in the discussion area they discuss -dateWithNaturalLanguageString:locale:, however they don't document the method elsewhere on the page.
I've used the method before ...