Cocoa is Apple's application-development framework for Mac OS X, consisting of Foundation, Application Kit, and Core Data. Use the "cocoa-touch" tag for iOS questions.
421
votes
12answers
180k 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. ...
410
votes
13answers
108k 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 ...
253
votes
12answers
76k views
How to print out the method name and line number and conditionally disable NSLog?
I'm doing a presentation on debugging in Xcode and would like to get more information on using NSLog efficiently.
In particular, I have two questions:
is there a way to easily NSLog the current ...
235
votes
15answers
39k 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.
215
votes
5answers
47k views
@synthesize vs @dynamic, what are the differences?
What are the differences between implementing a @property with @dynamic or @synthesize??
thanks.
213
votes
5answers
122k 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?
204
votes
10answers
54k views
how to throw an exception in objective-c/cocoa?
what's the best way to throw an exception in objective-c/cocoa?
202
votes
3answers
35k views
199
votes
10answers
77k 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 ...
183
votes
6answers
67k 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 ...
158
votes
2answers
110k 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+.
153
votes
5answers
26k 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);
...
151
votes
4answers
47k views
Core Data vs SQLite 3 [closed]
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 ...
151
votes
3answers
31k views
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.
144
votes
3answers
160k views
144
votes
3answers
38k views
Cocoa: What's the Difference between the frame and the bounds?
UIView and its subclasses all have the properties frame and bounds. What's the difference? (Please don't quote the Apple docs, I've already read them and did not understand)
134
votes
12answers
28k views
What does the NS prefix mean?
Many classes in Cocoa/Cocoa Touch have the NS prefix. What does it mean?
Thanks
126
votes
9answers
56k 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 ...
119
votes
15answers
12k views
Exception thrown in NSOrderedSet generated accessors
On my Lion app, I have this data model:
The relationship subitems inside Item is ordered.
Xcode 4.1 (build 4B110) has created for me the file Item.h, Item.m, SubItem.h and SubItem.h.
Here is the ...
117
votes
3answers
26k 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 ...
113
votes
3answers
56k views
How do I convert NSMutableArray to NSArray?
How do I convert NSMutableArray to NSArray in objective-c?
110
votes
23answers
46k views
“Unknown class <MyClass> in Interface Builder file” error at runtime
Even though Interface Builder is aware of a MyClass, I get an error when starting the application.
This happens when MyClass is part of a library, and does not happen if I compile the class directly ...
110
votes
12answers
22k 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 ...
106
votes
15answers
212k 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?
106
votes
2answers
37k 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?
98
votes
16answers
57k 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 ...
97
votes
6answers
47k views
96
votes
9answers
49k views
Is there a good charting library for iPhone? [closed]
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 ...
93
votes
4answers
45k 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?
92
votes
14answers
22k 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 ...
91
votes
5answers
62k 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 ...
89
votes
9answers
39k views
Execute a terminal command from a Cocoa app
How can I execute a terminal command (like grep) from my Objective-C Cocoa application?
85
votes
22answers
38k views
Cocoa and Objective-C resources? [closed]
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 ...
83
votes
7answers
20k views
How does an underscore in front of a variable in a cocoa objective-c class work?
I've seen in a few iPhone examples that attributes have used an underscore _ in front of the variable. Does anyone know what this means? or how it works?
an interface file I'm using looks like:
...
81
votes
7answers
43k views
How to convert CFStringRef to NSString?
NSString *aNSString;
CFStringRef aCFString;
aCFString = CFStringCreateWithCString(NULL, [aNSString UTF8String], NSUTF8StringEncoding);
aCFString = CFXMLCreateStringByUnescapingEntities(NULL, ...
81
votes
6answers
20k views
How do you print out a stack trace to the console/log in Cocoa?
I'd like to log the call trace during certain points, like failed assertions, or uncaught exceptions.
80
votes
1answer
21k views
Remove autolayout (constraints) in Interface Builder
I'm trying to make my project compatible with Snow Leopard and I am not able to remove the autolayout in the nibs using Interface builder (XCode 4.3 on Lion).
Is it possible to remove the constraints ...
77
votes
23answers
40k 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, ...
77
votes
6answers
30k views
What's the Best Way to Shuffle an NSMutableArray?
If you have an NSMutableArray, how do you shuffle the elements randomly?
(I have my own answer for this, which is posted below, but I'm new to Cocoa and I'm interested to know if there is a better ...
73
votes
4answers
16k views
Fix warning “Capturing [an object] strongly in this block is likely to lead to a retain cycle” in ARC-enabled code
In ARC enabled code, how to fix a warning about a potential retain cycle, when using a block-based API?
The warning:
Capturing 'request' strongly in this block is likely to lead to a retain cycle
...
70
votes
10answers
37k 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
69
votes
14answers
68k 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?
...
69
votes
7answers
49k 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 ...
66
votes
2answers
26k views
How to create a Menubar application for Mac
EDIT: This is a nice ready-made menubar application here (github source) by this answer.
I was wondering how to make a menubar application, what are the requirements for that to do so?
I saw a ...
65
votes
6answers
64k 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!
64
votes
11answers
37k 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 ...
64
votes
4answers
38k views
Objective C - Remove last character from string
In Objective C for the iPhone, how would I remove the last character of a string using a button action.
64
votes
7answers
37k 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 ...
64
votes
14answers
28k 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
...
61
votes
9answers
21k 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 ...
