Tagged Questions
This tag should be used only on questions that contain Objective-C code or are about Objective-C features. The tags "cocoa" and "cocoa-touch" should be used to ask about Apple's frameworks or classes. Use the related "ios" and "osx" for issues specific to those platforms.
574
votes
12answers
172k 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 ...
531
votes
5answers
115k 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 (e.g., in unit tests and mock objects) where the rules of ARC are a little more fragile right now. I recall hearing ...
476
votes
6answers
184k views
What is a typedef enum in Objective-C?
I don't think I fundamentally understand what an enum is, and when to use it.
For example:
typedef enum {
kCircle,
kRectangle,
kOblateSpheroid
} ShapeType;
What is really being ...
451
votes
15answers
165k 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 ...
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 ...
399
votes
22answers
324k views
How do I concatenate strings?
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 ...
368
votes
15answers
160k 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 NSMutableArray by ...
321
votes
13answers
45k views
performSelector may cause a leak because its selector is unknown
I'm getting the following warning by the ARC compiler:
"performSelector may cause a leak because its selector is unknown".
Here's what I'm doing:
[_controller ...
313
votes
7answers
192k 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 ...
304
votes
5answers
63k views
How do I set up NSZombieEnabled in Xcode 4?
How do I set up NSZombieEnabled and CFZombieLevel for my executable in Xcode 4?
303
votes
13answers
71k 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 ...
291
votes
4answers
119k views
284
votes
16answers
103k 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?
277
votes
5answers
120k views
String contains string in objective-c
How can I check if a string (NSString) contains another smaller string?
I was hoping for something like:
NSString *string = @"hello bla bla";
NSLog(@"%d",[string containsSubstring:@"hello"]);
But ...
272
votes
33answers
139k 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 ...
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 ...
238
votes
10answers
90k 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?
236
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.
230
votes
6answers
53k views
File is universal (three slices), but it does not contain a(n) ARMv7-s slice error for static libraries on iOS, anyway to bypass?
I upgraded Xcode version and when using external static libraries, I get this message:
ld: file is universal (3 slices) but does not contain a(n) armv7s slice: /file/location for architecture ...
226
votes
12answers
22k views
How to decide between MonoTouch and 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 ...
221
votes
11answers
58k 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 ...
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?
208
votes
3answers
79k 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?
206
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
200
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 ...
188
votes
7answers
138k views
How to convert an NSString into an NSNumber
How can I convert a 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 contain at ...
184
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 ...
182
votes
10answers
65k views
UIView with rounded corners
I have a login view which has a subview which has a UIActivityView and a UILabel saying "Signing In…". This subview has corners which aren't "rounded". How can I make them round?
Is there anyway to ...
176
votes
4answers
27k views
Should IBOutlets be strong or weak under ARC?
I am developing exclusively for iOS 5 using ARC. Should IBOutlets to UIViews (and subclasses) be strong or weak?
The following:
@property (nonatomic, weak) IBOutlet UIButton *button;
Would get rid ...
170
votes
13answers
132k views
How to link to apps on the app store
So I am creating a free version of my iPhone game. I want to have a button inside the free version that takes people to the paid version in the app store. If I use a standard link
...
164
votes
53answers
46k views
XCode 4 hangs at “Attaching to (app name)”
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 press run ...
161
votes
7answers
42k views
What is the difference between #import and #include in Objective-C?
What are the differences between #import and #include in Objective-C and are there times where you should use one over the other? Is one deprecated?
I was reading the following tutorial: ...
161
votes
11answers
58k 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?
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+.
157
votes
11answers
49k views
Get the current first responder without using a private API
I submitted my app a little over a week ago and got the dreaded rejection email today. It tells me that my app cannot be accepted because I'm using a non-public API; specifically, it says,
The ...
155
votes
28answers
163k 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 ...
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
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.
149
votes
15answers
105k views
What is the difference between class and instance methods?
What's the difference between a class method and an instance method?
Are instance methods the accessors (getters and setters) while class methods are pretty much everything else?
148
votes
4answers
84k views
Send and receive messages through NSNotificationCenter in Objective-C?
I need a simple example program to send and receive a message through NSNotificationCenter in Objective-C ?
146
votes
9answers
34k views
How do you trigger a block after a delay, like -performSelector:withObject:afterDelay:?
Is there a way to call a block with a primitive parameter after a delay, like using performSelector:withObject:afterDelay: but with an argument like int/double/float?
145
votes
4answers
37k views
How to add percent sign to NSString
I want to have a percentage sign in my string after a digit. Something like this: 75%.
How can I have this done? I tried:
[NSString stringWithFormat:@"%d\%", someDigit];
But it didn't work for me.
...
144
votes
3answers
160k views
144
votes
38answers
97k views
Applications are expected to have a root view controller at the end of application launch
I get the following error in my console:
Applications are expected to have a root view controller at the end of application launch
Below is my application:didFinishLaunchWithOptions method:
- ...
143
votes
12answers
30k views
How dangerous is it to compare floating point values?
I know UIKit uses CGFloat because of the resolution independent coordinate system.
But every time I want to check if for example frame.origin.x is 0 it makes me feel sick:
if (theView.frame.origin.x ...
140
votes
4answers
20k views
What kind of leaks does automatic reference counting in Objective-C not prevent or minimize?
In the Mac and iOS platforms, memory leaks are often caused by unreleased pointers. Traditionally, it has always been of utmost importance to check your allocs, copies and retains to make sure each ...
138
votes
9answers
26k views
iPad keyboard will not dismiss if modal view controller presentation style is UIModalPresentationFormSheet
Note: see accepted answer (not top voted one) for solution as of iOS 4.3.
This question is about a behavior discovered in the iPad keyboard, where it refuses to be dismissed if shown in a modal ...
