Objective-C is a highly dynamic, message-based, object-oriented language that is a superset of C and is primarily used for programming Apple's Mac OS X and iOS platforms.
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).
268
votes
31answers
62k 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.
227
votes
18answers
393k views
How much does it cost to develop an iPhone application? [closed]
How much can a developer charge for an iPhone app like Twitterrific?
I want to know this because I need such an application with the same functionality for a new community website. I can do Ruby but ...
218
votes
5answers
88k 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 ...
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 ...
183
votes
2answers
91k views
What is a typedef enum in Objective C?
I don't think I fundamentally understand what a enum is, and when to use it.
For example:
typedef enum {
kCircle,
kRectangle,
kOblateSpheroid
} ShapeType;
What is really being ...
161
votes
21answers
78k 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] ...
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, ...
152
votes
11answers
70k 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 ...
142
votes
5answers
108k 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 ...
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.
133
votes
16answers
11k views
Is MonoTouch worth the cost or should I just learn Objective-C?
After sitting through a session today on Mono at a local .Net event, the use of MonoTouch was 'touched' upon as an alternative for iPhone development. Being very comfortable in C# and .Net, it seems ...
133
votes
10answers
153k views
How do I concatenate strings in Objective-C?
Are there any shortcuts to (stringByAppendingString:) string concatenation in Objective-C or shortcuts for working with NSString or other objects in general?
For example, I'd like to make
NSString ...
129
votes
2answers
23k views
116
votes
6answers
48k views
How can I disable the UITableView selection highlighting?
When you tap a row in a UITableView, the row is highlighted and selected. Is it possible to disable this so tapping a row does nothing?
107
votes
8answers
28k views
Codesign error: Provisioning profile cannot be found after deleting expired profile
Tried to rebuild an app that was just working yesterday. Got a message that a profile had expired, so I removed it from the iPod and from Itunes. When I chose a new profile (one with an * in the ...
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?
91
votes
22answers
111k 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 ...
90
votes
8answers
24k views
Creating an abstract class in Objective C
I'm originally a Java programmer who now works with Objective-C. I'd like to create an abstract class but that doesn't appear to be possible in Objective-C. Is this possible?
If not, how close to ...
89
votes
33answers
16k views
Why do Programmers Love/Hate Objective-C? [closed]
So I have noticed that there is a lot of animosity towards Objective-C among programmers. What's your take? Is it a vendor lock-in thing against Apple? General antipathy towards Apple? The syntax? ...
87
votes
5answers
34k views
In Objective-C, how do I test the object type?
I need to test whether the object is of type NSString or UIImageView. How can I accomplish this? Is there some type of "isoftype" method?
87
votes
4answers
46k views
85
votes
14answers
64k 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 ...
83
votes
22answers
58k 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 ...
77
votes
7answers
39k views
How do I test if a string is empty in Objective C?
How do I test if an NSString is empty in Objective C?
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 ...
73
votes
7answers
52k 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 ...
71
votes
7answers
20k views
How do I [legally] get the current first responder on the screen on an iPhone?
I submitted my app a little over a week ago and got the dreaded rejection email today. It reads as follows:
Dear -----------,
Thank you for submitting --------- to the App Store. ...
71
votes
6answers
59k views
How to convert an NSString into an NSNumber
How can I convert an NSString containing a number of any primitive data type (e.g. int, float, char, unsigned int, etc.)? The problem is, I don't know which number type the string will contains at ...
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
4answers
27k views
Some questions about Automatic Reference Counting in iOS5 SDK
I'm currently developing an app for iPad. The development started for iOS 4.2 and is now continuing (and I think will be completed) for iOS 4.3.
I just read about ARC in iOS 5, and basically I ...
68
votes
8answers
13k views
Comparison of JSON Parser for Objective-C (JSON Framework, YAJL, TouchJSON, etc)
As far as I know, there are three JSON Parsers for Objective-C, JSON Framework, YAJL, and Touch JSON. Then, These three would have their own characteristics.
For example:
YAJL can be used as a SAX ...
68
votes
19answers
4k views
Non-Mainstream Languages, Bad for your resume? [closed]
I got my BS in Computer Science about seven years ago. I spent two years in neuroscience research and the next three providing what amounts to tech support.
But I love computer programming - and I ...
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 ...
68
votes
12answers
32k 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?
67
votes
3answers
24k views
UIView with rounded corners
Basically i have a login View which has a subview and it has a UIActivityView and Label saying "Signing In....", this subview has a corners which are not "round", how i can make them to look like ...
66
votes
32answers
15k views
XCode 4 hangs at “Attaching to (app name)”
Hey guys, this is driving me crazy! I just upgraded to XCode 4 and for some reason my app won't run in the simulator or iOS device. It was working perfectly in XCode 3, but all of a sudden now when I ...
66
votes
7answers
20k views
When should I release objects in -(void)viewDidUnload rather than in -dealloc?
What is the -(void)viewDidUnload is good for?
Could I not just relase everything in -dealloc? If the view did unload, wouldn't -dealloc be called anyway?
65
votes
6answers
11k views
UIActionSheet cancel button strange behaviour
I have a UIBarButtonItem opening an action sheet to offer users choices about what to do. Everything works as expected unless I try to click on the "Cancel" button. The target of the button appears to ...
64
votes
8answers
6k views
Why doesn't Objective-C support private methods?
I've seen a number of strategies for declaring semi-private methods in Objective-C, but there does not seem to be a way to make a truly private method. I accept that. But, why is this so? Every ...
63
votes
1answer
10k 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 ...
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.
63
votes
11answers
16k views
How can I write an iPhone app entirely in JavaScript without making it just a web app?
I don't want to take the time to learn Obj-C. I've spent 7+ years doing web application programming. Shouldn't there be a way to use the WebView and just write the whole app in javascript, pulling the ...
61
votes
7answers
10k views
iPad keyboard will not dismiss if modal view controller presentation style is UIModalPresentationFormSheet
UPDATE 2011-03-31:
As of iOS 4.3, you can now implement a disablesAutomaticKeyboardDismissal and return NO, as in
- (BOOL)disablesAutomaticKeyboardDismissal {
return NO;
}
(thanks Sebastian ...