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.

learn more… | top users | synonyms

87
votes
7answers
21k 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: ...
94
votes
6answers
64k 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 ...
227
votes
5answers
125k 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?
417
votes
13answers
109k 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 ...
82
votes
6answers
31k 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 ...
434
votes
12answers
184k 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. ...
85
votes
22answers
39k 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 ...
188
votes
6answers
69k 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 ...
159
votes
3answers
165k views

How do I use NSTimer?

How do I use an NSTimer? Can anyone give me step by step instructions?
68
votes
12answers
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 ...
67
votes
6answers
65k 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!
154
votes
4answers
48k 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 ...
95
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 ...
97
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 ...
55
votes
9answers
43k views

HTML character decoding in Objective-C / Cocoa Touch

First of all, I found this: http://stackoverflow.com/questions/659602/objective-c-html-escape-unescape, but it doesn't work for me. My encoded characters (come from a RSS feed, btw) look like this: ...
34
votes
6answers
9k views

Why shouldn't I use Objective C 2.0 accessors in init/dealloc? [closed]

In @mmalc's response to this question he states that "In general you should not use accessor methods in dealloc (or init)." Why does mmalc say this? The only really reasons I can think of are ...
4
votes
3answers
1k views

Why do you use an underscore for an instance variable, but not its corresponding property? [duplicate]

Possible Duplicate: How does an underscore in front of a variable in a cocoa objective-c class work? I am new to iphone development.I am doing research on voice recording in iphone .I have ...
21
votes
8answers
8k views

When do you make an underscore in front of an instance variable? [duplicate]

Possible Duplicate: How does an underscore in front of a variable in a cocoa objective-c class work? I've seen this at Apple, inside UIPickerView.h: id<UIPickerViewDataSource> ...
48
votes
10answers
15k views

Sending a message to nil?

As a Java developer who is reading Apple's Objective-C 2.0 documentation: I wonder as to what sending a message to nil means - let alone how it is actually useful. Taking an excerpt from the ...
0
votes
4answers
391 views

Cannot add items to an NSMutableArray ivar

My goal is to add a string to array, and I do that in a method which I call. In this method, I get a null value in the array, and don't know why. I have this at the start of my class: NSMutableArray ...
257
votes
12answers
77k 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 ...
210
votes
11answers
79k 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 ...
94
votes
9answers
40k views

Execute a terminal command from a Cocoa app

How can I execute a terminal command (like grep) from my Objective-C Cocoa application?
27
votes
6answers
35k views

NSString to NSDate

I got a string that contains the current date by using this : NSString *date = [[NSDate date] description]; At a different point I want to retrieve the date from this string and I used the ...
21
votes
3answers
45k views

How to sort NSMutableArray using sortedArrayUsingDescriptors?

I have a question about sorting NSMutableArray. I can use sortedArrayUsingDescriptors: method to sort an array with objects. For example I have an NSMutableArray of places where I have an ...
67
votes
14answers
29k 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 ...
98
votes
4answers
46k 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?
48
votes
7answers
37k views

Sort NSArray of date strings or objects

I have an NSArray that contains date strings like this: "Thu, 21 May 09 19:10:09 -0700" I need to sort the NSArray by date. I thought about converting the date string to an NSDate object first, but ...
29
votes
4answers
13k views

Cocoa Graphing/Plotting Framework that Works on iPhoneOS [closed]

Looking at adding some data graphing to a new iPhone app in development (ala the Stocks app). I realize I could buckle down and do some Quartz drawing but I'm hoping that someone somewhere has a tip ...
23
votes
2answers
1k views

Calling -retainCount Considered Harmful

Or, Why I Didn't Use retainCount On My Summer Vacation This post is intended to solicit detailed write-ups about the whys and wherefores of that infamous method, retainCount, in order to consolidate ...
25
votes
5answers
19k views

Understanding NSString comparison

Both the following comparisons evaluate to true: 1) @"foo" == @"foo"; 2) NSString *myString1 = @"foo"; NSString *myString2 = @"foo"; myString1 == myString2; However, there are definitely times ...
60
votes
31answers
9k views

Are you doing iPhone development? How do you learn? [closed]

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 ...
119
votes
3answers
27k 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 ...
39
votes
6answers
16k views

How to Check if an NSDate occurs between two other NSDates

I am trying to figure out whether or not the current date falls within a date range using NSDate. For example, you can get the current date/time using NSDate: NSDate rightNow = [NSDate date]; I ...
156
votes
3answers
32k 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.
114
votes
13answers
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 ...
53
votes
6answers
22k views

Objective C Introspection/Reflection

Is there a built in method, function, API, commonly accepted way, etc. to dump the contents of an instantiated object in Objective C, specifically in Apple's Cocoa/Cocoa-Touch environment? I want to ...
38
votes
6answers
52k views

Rounding numbers in Objective-C

I'm trying to do some number rounding and conversion to a string to enhance the output in an Objective-C program. I have a float value that I'd like to round to the nearest .5 and then use it to set ...
0
votes
2answers
13k views

Having trouble adding objects to NSMutableArray in Objective C

I am using the iPhone SDK and have an issue doing something simple. I am trying to add an NSNumber object to an NSMutableArray instance variable. I tried adding NSNumber card to NSMutableArray ...
125
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 ...
18
votes
8answers
16k views

How to read data from NSFileHandle line by line?

I have a text file having data as given e.g. ...
27
votes
4answers
19k views

Does UIGestureRecognizer work on a UIWebView?

I am attempting to get a UIGestureRecognizer working with a UIWebview which is a subview of a UIScrollView. This sounds odd but when I have the numberOfTouchesRequired set to 2 the selector fires, but ...
46
votes
1answer
8k views

`[super viewDidLoad]` convention

I see some example code with [super viewDidLoad] called before your implementation and after your implementation. I know you don't always have to call super (as seen in many other discussions). When ...
17
votes
3answers
7k views

Using Objective C/Cocoa to unescape unicode characters, ie \u1234

Some sites that I am fetching data from are returning UTF-8 strings, with the UTF-8 characters escaped, ie: \u5404\u500b\u90fd Is there a built in cocoa function that might assist with this or will ...
100
votes
16answers
58k 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 ...
127
votes
9answers
58k 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 ...
25
votes
6answers
10k views

Property vs. instance variable

I'm trying to understand how strategies some folks use to distinguish instance vars vs. properties. A common pattern is the following: @interface MyClass : NSObject { NSString *_myVar; } ...
14
votes
1answer
7k views

Parsing XML in Cocoa

Today I am looking into how to make a simple XML parser in Cocoa (for the desktop). I am thinking of using NSXMLParser to parse the data, but am not quite sure where to start. The XML file on the ...
19
votes
3answers
11k views

Open Source Cocoa/Cocoa-Touch POP3/SMTP library?

I'm looking to write a sample application speaking to a POP3/SMTP server. Instead of re-inventing the wheel with BSD sockets and CFNetwork type calls, I'm curious if there is currently any open source ...
25
votes
5answers
14k views

How to Write OS X Finder plugin

I'm looking for a guide or sample code for writing Mac OS X Finder plugins? It would like to know how to do some simple actions: adding image overlayers to icons adding context menu items listen to ...

1 2 3 4 5 66