Cocoa is Apple's application-development framework for Mac OS X, consisting of Foundation, Application Kit, and Core Data. For iOS questions, use [cocoa-touch].
338
votes
89answers
123k views
Hidden Features of Xcode
With a huge influx of newbies to Xcode, I'm sure there are lots of Xcode tips and tricks to be shared.
What are yours?
294
votes
32answers
49k views
What are best practices that you use when writing Objective-C and Cocoa?
I know about the HIG (which is quite handy!), but what programming practices do you use when writing Objective-C, and more specifically when using Cocoa (or CocoaTouch).
211
votes
9answers
69k views
@class vs. #import
It is to my understanding that one should use a forward-class declaration in the event ClassA needs to include a ClassB header, and ClassB needs to include a ClassA header to avoid any circular ...
153
votes
10answers
94k views
Constants in Objective C
I'm developing a Cocoa app, and I'm using constant NSStrings as ways to store key names for my preferences. I understand this is a good idea because it allows easy changing of keys if necessary. Plus, ...
142
votes
14answers
22k views
What is the best way to unit test Objective-C code?
What frameworks exist to unit test Objective-C code? I would like a framework that integrates nicely with Xcode.
129
votes
2answers
23k views
108
votes
23answers
14k views
Hidden Features of Xcode 4
Now that Xcode 4 is officially released it's time for a follow up to my previous question: Hidden Features of Xcode
So what are they? What are those hidden little Xcode 4 hints & tips that you ...
102
votes
3answers
37k views
NSString property: copy or retain?
Let's say I have a class called SomeClass with a string property name:
@interface SomeClass : NSObject
{
NSString* name;
}
@property (nonatomic, retain) NSString* name;
@end
I understand that ...
101
votes
9answers
40k views
Best way to define private methods for a class in Objective-C
I just started programming Objective-C and, having a background in Java, wonder how people writing Objective-C programs deal with private methods.
I understand there may be several conventions and ...
93
votes
8answers
29k views
how to throw an exception in objective-c/cocoa?
what's the best way to throw an exception in objective-c/cocoa?
92
votes
9answers
35k views
NSLog tips and tricks [closed]
I'm doing a presentation on debugging in Xcode and would like to get more information on using NSLog efficiently. I'd like to know if there are any tips and tricks to using NSLog which you guys have ...
92
votes
5answers
73k views
How do I create delegates in Objective-C?
I know how delegates work, and I know how I can use them.
But how do I create them?
76
votes
6answers
26k views
Core Data vs SQLite 3
I am already quite familiar with relational databases and have used SQLite (and other databases) in the past. However, Core Data has a certain allure, so I am considering spending some time to learn ...
75
votes
7answers
31k views
Regular expressions in an Objective-C Cocoa application
Initial Googling indicates that there's no built-in way to do regular expressions in an Objective-C Cocoa application.
So four questions:
Is that really true?
Are you kidding me?
Ok, then is there ...
71
votes
14answers
16k views
Understanding reference counting with Cocoa and Objective-C
I'm just beginning to have a look at Objective-C and Cocoa with a view to playing with the iPhone SDK. I'm reasonably comfortable with C's malloc and free concept, but Cocoa's references counting ...
70
votes
12answers
144k views
How to do string conversions in Objective-C?
I want to convert a string into a double and after doing some math on it, convert it back to a string.
How do I do this in Objective-C?
Is there a way to round a double to the nearest integer too?
68
votes
3answers
13k views
Why are Objective-C delegates usually given the property assign instead of retain?
I'm surfing through the wonderful blog maintained by Scott Stevenson, and I'm trying to understand a fundamental Objective-C concept of assigning delegates the 'assign' property vs 'retain'. Note, the ...
63
votes
4answers
15k views
@synthesize vs @dynamic, what are the differences?
what are the differences between implementating a @property with @dynamic or @synthesize??
thanks.
62
votes
9answers
33k views
Is there a good charting library for iPhone?
I have a need to render and display charts (bar charts for now, but more types may be needed later) in an iPhone app I'm working on. I've done some looking around and it doesn't look like there are ...
60
votes
3answers
15k views
Objective-C: What's the Difference between objectForKey and valueForKey?
What is the difference between objectForKey and valueForKey?
I looked both up in the documentation and they seemed the same to me.
57
votes
10answers
9k views
What is the best way to solve an Objective-C namespace collision?
Objective-C has no namespaces; it's much like C, everything is within one global namespace. Common practice is to prefix classes with initials, e.g. if you are working at IBM, you could prefix them ...
56
votes
24answers
21k views
Learn C first before learning Objective-C [closed]
Being an aspiring Apple developer, I want to get the opinions of the community if it is better to learn C first before moving into Objective-C and ultimately the Cocoa Framework?
My gut says learn C, ...
55
votes
30answers
6k views
Are you doing iPhone development? How do you learn?
I am looking for more iPhone developers who are actively posting to their blog and/or Twitter. I have been learning a lot from books but the online resources beyond Apple's developer site have been ...
53
votes
21answers
19k views
Cocoa and Objective-C resources?
What are the recommended online or offline resources for Objective-C and Cocoa programming?
My online resources:
O'Reilly. Some useful articles and examples, but has not been updated for quite a ...
50
votes
4answers
27k views
49
votes
3answers
22k views
NULL vs nil in Objective-C
In observeValueForKeyPath:ofObject:change:context: - why do the docs use NULL instead of nil when not specifying a context pointer?
47
votes
9answers
19k views
Execute a terminal command from a Cocoa app
How can I execute a terminal command (like grep) from my Objective-C Cocoa application?
46
votes
3answers
48k views
How do I iterate over an NSArray?
I'm looking for the standard idiom to iterate over an NSArray. My code needs to be suitable for OS X 10.4+.
45
votes
6answers
20k views
Use C++ with Cocoa Instead of Objective-C?
I would like to write applications that use C++ and the Cocoa frameworks because Apple are not making Carbon 64-bit capable. C++ seems to be pretty vanilla in it's implementation on Linux and Windows ...
44
votes
4answers
63k views
44
votes
4answers
7k views
Is It Possible to NSLog C Structs (Like CGRect or CGPoint)?
I want to be able to debug C structures without having to explicitly type every property that they consist of.
i.e. I want to be able to do something like this:
CGPoint cgPoint = CGPointMake(0,0);
...
39
votes
11answers
11k views
What does the NS prefix mean?
Many classes in Cocoa/Cocoa Touch have the NS prefix. What does it mean?
Thanks
39
votes
5answers
35k views
How can I upload a photo to a server with the iPhone?
I'm writing an iPhone app that takes a photo and then uploads it to a server. How do I upload a photo to a server with Cocoa in Xcode? I suppose I use NSUrl somewhere.
Thanks!
38
votes
11answers
16k views
Managing multiple asynchronous NSURLConnection connections
I have a ton of repeating code in my class that looks like the following:
NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request
...
38
votes
19answers
6k views
What are the best Cocoa-Touch/iPhone programming blogs? [closed]
What are the best Cocoa-Touch/iPhone programming blogs? One blog per answer please.
Some answers may overlap with
Best Cocoa/Mac OS X programming blogs?
, but I'm looking for blogs with good meaty ...
37
votes
7answers
32k views
How do I debug with NSLog(@“Inside of the iPhone Simulator”)?
I'm used to programming and having log messages be viewable. I know you used to be able to use NSLog() to trace out messages when debugging Cocoa applications. What is the best way to "trace" messages ...
36
votes
2answers
15k views
Objective-C: Extract filename from path string
When I have NSString with '/Users/user/Projects/thefile.ext' I want to extract 'thefile' with Objective-C methods.
What is the easiest way to do that?
Thanks.
34
votes
5answers
35k views
How to get pixel data from a UIImage (Cocoa Touch) or CGImage (Core Graphics)?
I have a UIImage (Cocoa Touch). From that, I'm happy to get a CGImage or anything else you'd like that's available. I'd like to write this function:
- (int)getRGBAFromImage:(UIImage *)image ...
34
votes
6answers
18k views
Object allocate and init in Objective C
What is the difference between the following 2 ways to allocate and init an object?
AController *tempAController = [[AController alloc] init];
self.aController = tempAController;
[tempAController ...
33
votes
10answers
16k views
How to force NSLocalizedString to use a specific language
on iPhone NSLocalizedString returns the string in the language of the iPhone.
Is it possible to force NSLocalizedString to use a specific language to have the app
in a different language than the ...
33
votes
6answers
21k views
What does the property “Nonatomic” mean?
What does "nonatomic" mean in this code?
@property(nonatomic, retain) UITextField *theUsersName;
What is the difference between atomic and nonatomic?
Thanks
33
votes
9answers
11k views
How do you document your source code in Xcode?
I'm a Mac developer with a very strong Java background. I've documented my sources using Javadoc, a lot.
What's the way to go with Cocoa and Xcode?
Are there any documentation tools supplied ...
33
votes
13answers
40k views
Best way to remove from NSMutableArray while iterating?
In Cocoa, if I want to loop through an NSMutableArray and remove multiple objects that fit a certain criteria, what's the best way to do this without restarting the loop each time I remove an object?
...
32
votes
7answers
22k views
Getting a list of files in a directory with a glob
For some crazy reason I can't find a way to get a list of files with a glob for a given directory.
I'm currently stuck with something along the lines of:
NSString *bundleRoot = [[NSBundle ...
31
votes
2answers
823 views
Cocoa drawing on different screens loses performance
I have a document-based app, where each document has one window with an NSScrollView that does some (fairly continuous) drawing using only Cocoa.
To call the drawing, I am using a CVDisplayLink, ...
31
votes
2answers
1k views
easing c++ to objective-c/cocoa bridging via metaprogramming?
In a pure C++ world we can generate interfacing or glue code between different components or interfaces at compile time, using a combination of template-based compile-time and runtime-techniques (to ...
31
votes
10answers
26k views
Delete/Reset all entries in Core Data?
Do you know of any way to delete all of the entries stored in Core Data? My schema should stay the same; I just want to reset it to blank.
Edit
I'm looking to do this programmatically so that a ...
31
votes
3answers
12k views
How to perform Callbacks in Objective-C
I am a beginner programmer in Objective-C. Can anyone please tell me how to perform call back functions in Objective-C.
I would just like to see some completed examples and I should understand it.
...
31
votes
6answers
51k views
Convert NSData bytes to NSString?
I'm trying to use the BEncoding ObjC class to decode a .torrent file.
NSData *rawdata = [NSData dataWithContentsOfFile:@"/path/to/the.torrent"];
NSData *torrent = [BEncoding ...
31
votes
2answers
19k views
How to view contents of NSDictionary variable in Xcode debugger?
Is there a way to view the key/value pairs of a NSDictionary variable through the Xcode debugger? Here's the extent of information when it is fully expanded in the variable window:
Variable Value ...