Objective-C is an object-oriented language, a hybrid combining features of C and Smalltalk. It is a strict superset of the former—any valid C code is also valid Objective-C—and takes its message-passing syntax and runtime method resolution from the latter. It is primarily used for applications ...

learn more… | top users | synonyms (2) | objective c jobs

209
votes
25answers
92k views

What does your Objective-C singleton look like?

My singleton accessor method is merely: static MyClass *gInstance = NULL; + (MyClass *)instance { @synchronized(self) { if (gInstance == NULL) gInstance = [[self alloc] ...
331
votes
34answers
75k views

How-to articles for iPhone development and Objective-C

I am looking for an introduction into developing for the iPhone. Any recommendation? I do not speak Objective-C either, so tutorials on that would not hurt either.
62
votes
12answers
54k views

Any base64 library on iphone-sdk?

I'd like to do base64 encoding and decoding. But I could not find any support from iPhone SDK. Any suggestion? Thanks.
28
votes
7answers
3k views

When to use -retainCount?

I would like to know in what situation did you use -retainCount so far, and eventually the problems that can happen using it. Thanks.
220
votes
15answers
94k views

How to check for an active Internet Connection on iPhone SDK?

I would like to check to see if I have an Internet connection on the iPhone using the Cocoa Touch libraries. I came up with a way to do this using an NSUrl. The way I did it seems a bit unreliable ...
163
votes
2answers
31k views

How can I disable ARC for a single file in a project?

I am using ARC successfully in my project, however, I have encountered a few files, namely in unit tests and mock objects, where the rules of ARC are a little more fragile right now. I recall hearing ...
262
votes
10answers
82k 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 ...
162
votes
13answers
88k views

How to sort an NSMutableArray with custom objects in it?

What I want to do seems pretty simple, but I can't find any answers on the web. I have an NSMutableArray of objects, let's say they are 'Person' objects. I want to sort the NSMutable array by ...
111
votes
5answers
88k 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?
218
votes
10answers
116k 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, ...
120
votes
23answers
77k views

How to make a UITextField move up when keyboard is present

With the iPhone SDK: I have a UIView with UITextFields that brings up a keyboard. I need it to be able to: Allow scrolling of the contents of the UIScrollView to see the other text fields once the ...
294
votes
8answers
109k views

Atomic vs nonatomic properties

What do atomic and nonatomic mean in property declarations? @property(nonatomic, retain) UITextField *userName; @property(atomic, retain) UITextField *userName; @property(retain) UITextField ...
120
votes
5answers
46k 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 ...
62
votes
21answers
23k 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 ...
180
votes
6answers
131k views

Generating Random Numbers in Objective-C

I'm a java head mainly, and I want a way to generate a pseudo-random number between 0 and 74. In java I would use the method: Random.nextInt(74) I'm not interested in a discussion about seeds or ...
41
votes
10answers
21k 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 ...
65
votes
4answers
86k views

How do I use NSTimer

How do I use an NSTimer. Can anyone give me step by step instructions?
60
votes
15answers
56k views

Is there a documented way to set the iPhone orientation?

I have an app where I would like to support device rotation in certain views but other don't particularly make sense in Landscape mode, so as I swapping the views out I would like to force the ...
42
votes
5answers
17k 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 ...
22
votes
9answers
39k views

Custom colors in UITabBar

Is it possible to use custom colors and background images in a UITabBar? I realize that Apple would like everyone to use the same blue and gray tab bars, but is there any way to customize this? ...
73
votes
10answers
63k views

Objective-C: Class vs Instance Methods?

What's the difference between a class method and an instance method? Are instance methods the accessors (getters & setters) while class methods are pretty much everything else? Thanks,
58
votes
13answers
77k views

Proper way to exit iPhone application?

I am programming an iPhone app, and I need to force it to exit due to certain user actions. After cleaning up memory the app allocated, what's the appropriate method to call to terminate the ...
27
votes
5answers
9k 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: ...
23
votes
7answers
4k views

Prefixing property names with an underscore in Objective C

I've always avoided underscores in my variable names, perhaps because its just not what was done back in my learning Java in college days. So when I define a property in Objective C this is what I ...
108
votes
24answers
129k views

EXC_BAD_ACCESS signal received

When deploying the application to the device, the program will quit after a few cycles with the following error: Program received signal: "EXC_BAD_ACCESS". The program runs without any issue on the ...
86
votes
11answers
40k views

Best JSON library to use when developing an iPhone application? [closed]

There are a few JSON libraries/frameworks available for Objective-C developers, but I wanted to get the opinion of the resident gurus here on which one is the best, and why. Any thoughts?
34
votes
2answers
27k views

AES Encryption for an NSString on the iPhone

Can anybody point me in the right direction to be able to encrypt a string, returning another string with the encrypted data? (I've been trying with AES256 encryption.) I want to write a method which ...
46
votes
12answers
36k views

How to intercept touches events on a MKMapView or UIWebView objects?

I'm not sure what i'm doing wrong but I try to catch touches on a MKMapView object. I subclassed it by creating the following class : #import <UIKit/UIKit.h> #import <MapKit/MapKit.h> ...
35
votes
7answers
27k 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: ...
49
votes
6answers
35k views

How can I programmatically get the MAC address of an iphone

Does anyone know how to programmatically get an iPhone's MAC address and IP address?
78
votes
14answers
18k 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 ...
62
votes
14answers
98k views

iPhone: How to load a View using a nib file created with Interface Builder

I'm trying to do something a bit elaborate but that should be possible, so here is a challenge for all you experts out there (this forum is pack of the lot of you :) ). Im creating a Questionnaire ...
49
votes
9answers
50k views

Objective-C: Reading a file line by line

What is the appropriate way of dealing with large text files in Objective-C? Let's say I need to read each line separately and want to treat each line as an NSString. What is the most efficient way of ...
45
votes
9answers
53k views

iPhone app in landscape mode

What's the best way to create an iPhone application that runs in landscape mode from the start, regardless of the position of the device? Both programmatically and using the Interface Builder.
60
votes
2answers
35k views

How to send and receive message through NSNotificationCenter in Objective-C?

Hi I need a simple example program to send and receive a message through NSNotificationCenter in Objective-C ???
27
votes
6answers
6k views

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

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 ...
9
votes
0answers
23k views

How to use NSzombie in xcode? [closed]

Possible Duplicate: How to enable NSZombie on Xcode 4? My application is crashing a lot! How do I find the error through NSZombie? Could someone give me step by step instructions to use ...
134
votes
9answers
52k 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 ...
46
votes
12answers
35k views

Best book / resources for learning iOS programming? [closed]

Which resources did you find useful for learning iOS programming? Books? Website? Videos?
24
votes
6answers
15k views

Has anyone implemented the PayPal API through a native iPhone app?

It seems the only way to stay "in app" is to give them a UIWebView of the paypal mobile site and let them complete the transaction there, otherwise the user would need to use their API key. Does this ...
47
votes
14answers
23k views

Compile, Build or Archive problems with Xcode 4 (and dependancies)

This question has evolved over the past several weeks to cover more general issues with xcode4 (and upgrading projects form older xcodes). However many of the issues can be solved by following the ...
30
votes
5answers
15k views

JSON and Core Data on the iPhone

I have a core data object graph (consisting of two entities linked by a to-many relationship). I was curious, as a relatively inexperienced iPhone developer, whether anyone could recommend an ...
27
votes
3answers
15k views

How can I animate the movement of a view or image along a curved path?

I am developing a commerce application. When I add an item to the shopping cart, I want to create an effect where an image of the item follows a curved path and ends up at the cart tab. How can I ...
22
votes
2answers
27k views

How does a delegate work in objective-C?

Does anyone know where I can find a good explanation/tutorial of what and how an application delegate works in objective-C? The two books I have don't dwell on delegates enough and do not explain them ...
34
votes
10answers
8k 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 ...
20
votes
3answers
791 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 ...
5
votes
1answer
4k views

Is there any framework to highlight text on pdf file after rendering on the iphone

I am trying to work on searching a word on the pdf which is rendered through the drawLayer. Can any one suggest how I should find a word on a pdf and the position (co-ordinates) of the word on the ...
87
votes
8answers
64k views

Objective C for Windows

What would be the best way to write Objective-C on the Windows platform? Cygwin and gcc? Is there a way I can somehow integrate this into Visual Studio? Along those lines - are there any suggestions ...
29
votes
9answers
36k views

Objective C HTML escape/unescape

Wondering if there is an easy way to do a simple HTML escape/unescape in Objective C. What I want is something like this psuedo code: NSString *string = ...
21
votes
6answers
23k views

Passing Data between View Controllers

I'm new to IOS and Objective-C and the whole MVC paradigm and i'm stuck with the following. I have a View that acts as a data entry form and I want to give the user the option to select multiple ...

1 2 3 4 5 405