Cocoa Touch is Apple's application-development framework for iOS, consisting of the Foundation, UI Kit, and Core Data frameworks. For Mac development, see [cocoa]. Many Cocoa Touch questions deal with [core-graphics], [core-animation], or [opengl-es].
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).
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 ...
186
votes
18answers
56k views
How do I vertically align text within a UILabel?
I have an UILabel with two lines. Sometimes, when the text is short enough, this text is displayed in the vertical center of the UILabel.
How do I vertically align my text at the top of the UILabel?
...
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 ...
151
votes
16answers
70k views
Can I embed a custom font in an iPhone application?
I would like to have an app include a custom font for rendering text, load it, and then use it with standard UIKit elements like UILabel. Is this possible?
I found these links:
...
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?
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 ...
102
votes
9answers
73k views
How to programmatically send SMS on the iPhone?
Does anybody know if it's possible, and how, to programmatically send a SMS from the iPhone, with the official SDK / Cocoa Touch?
94
votes
16answers
47k views
Creating a left-arrow button (like UINavigationBar's “back” style) on a UIToolbar
I'd love to create a "back" left-arrow-bezel button in a UIToolbar.
As far as I can tell, the only way to get one of these is to leave UINavigationController at default settings and it uses one for ...
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 ...
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 ...
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. ...
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
5answers
119k views
iPhone UIView Animation Best Practice
What is considered best practice for animating view transitions on the iPhone?
For example, the ViewTransitions sample project from apple uses code like:
CATransition *applicationLoadViewIn = ...
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
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 ...
65
votes
8answers
62k views
How can I send mail from an iPhone application
I want to send an email from my iPhone application. I have heard that the iOS SDK doesn't have an email API. I don't want to use the following code because it will exit my application:
NSString *url ...
64
votes
2answers
22k views
How do I associate file types with an iPhone application?
On the subject of associating your iPhone app with file types.
In this informative question I learned that apps could be associated with custom URL protocols.
That was almost one year ago and since ...
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.
62
votes
9answers
33k views
Is there a good charting library for iPhone?
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 ...
61
votes
12answers
41k views
Is there a barcode recognition framework for iOS?
Is there a framework or other sample code for doing barcode recognition on iPhone / iPad?
57
votes
9answers
22k views
Cancel a UIView animation?
Is it possible to cancel a UIView animation while it is in progress? Or would I have to drop to the CA level?
i.e. I've done something like this (maybe setting an end animation action too):
[UIView ...
56
votes
3answers
9k views
What's the best way to communicate between view controllers?
Being new to objective-c, cocoa, and iPhone dev in general, I have a strong desire to get the most out of the language and the frameworks.
One of the resources I'm using is Stanford's CS193P class ...
56
votes
7answers
55k views
How do you dismiss the keyboard when editing a UITextField
I know that I need to tell my UITextField to resign first responder when I want to dismis the keyboard, but I'm not sure how to know when the user has pressed the "Done" key on the keyboard. Is there ...
55
votes
7answers
57k views
Gradients on UIView and UILabels On iPhone
My application needs to display text in either a View or Label but the back ground must be a gradient as opposed to a true color. Using a graphics program to create desired look is no good as the text ...
55
votes
30answers
6k views
Are you doing iPhone development? How do you learn?
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 ...
55
votes
10answers
58k views
How to customize the background/border colors of a grouped table view?
I would like to customize both the background and the border color of a grouped-style UITableView.
I was able to customize the background color by using the following:
...
55
votes
7answers
38k views
How do I size a UITextView to its content?
Is there a good way to adjust the size of a UITextView to conform to its content? Say for instance I have a UITextView that contains one line of text:
"Hello world"
I then add another line of text:
...
53
votes
5answers
36k views
How do I wrap text in a UITableViewCell without a custom cell
This is on iPhone 0S 2.0. Answers for 2.1 are fine too, though I am unaware of any differences regarding tables.
It feels like it should be possible to get text to wrap without creating a custom ...
52
votes
9answers
34k views
Having a UITextField in a UITableViewCell
I'm trying to do that for a couple of days now, and after reading tons of messages of people trying to do that too, I'm still unable to have a fully working UITextField in some of my UITableViewCells, ...
51
votes
1answer
11k views
What's a quick way to test to see a file exists?
I want to quickly check to see if a file exists in my iPhone app's Documents directory (or any path for that matter). I can enumerate through the directory's files, or I can try to open a specific ...
51
votes
15answers
49k 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 ...
50
votes
15answers
69k 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 ...
49
votes
14answers
82k 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 ...
48
votes
10answers
60k views
How to customize the background color of a UITableViewCell?
I would like to customize the background (and maybe the border too) of all of the UITableViewCells within my UITableView. So far I have not been able to customize this stuff, so I have a bunch of ...
48
votes
17answers
35k views
iphone viewWillAppear not firing
I've read numerous posts about people having problems with viewWillAppear when you do not create your view heirarchy JUST right. My problem is I can't figure out what that means.
If I create a ...
45
votes
12answers
28k views
How do you load custom UITableViewCells from Xib files?
The question is simple: How do you load custom UITableViewCells from Xib files? Doing so allows you to use Interface Builder to design your cells. The answer apparently is not simple due to memory ...
44
votes
5answers
24k views
Determining if an iPhone is Jail broken Programatically
If your interested in this question why not support the Area 51 proposal for a iOS Jailbreaking Development Stack Exchange site
How do you determine (programatically) if an iPhone/iPod is:
Jail ...
44
votes
4answers
7k 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);
...
44
votes
4answers
37k views
iPhone proper usage of Application Delegate
I'm looking to be able to reference certain state/objects through anywhere in my application. For instance, a user logs in to their application, I need to call a web service and retrieve the users ...
43
votes
8answers
33k views
Adjust UILabel height depending on the text
Consider i have the following text in a UILabel (a long line of dynamic text):
Since the alien army vastly outnumbers the team, players must use the post-apocalyptic world to their advantage, such ...
42
votes
5answers
10k views
How does the new automatic reference counting mechanism work?
Can someone briefly explain to me how ARC works? I know it's different from Garbage Collection, but I was just wondering exactly how it worked.
Also, if ARC does what GC does without hindering ...
42
votes
11answers
25k views
Placeholder in UITextView
I'm making an application which uses an UITextView. Now I want the UITextView to have a placeholder similar to the one you can set for an UITextField.
Does anyone know how to do this?
Thanks in ...
42
votes
1answer
15k views
iPhone Development - 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? (don't quote apple docs)
Thanks!!
42
votes
5answers
28k views
Why NSUserDefaults failed to save NSMutableDictionary in iPhone SDK?
I'd like to save an NSMutableDictionary object in NSUserDefaults. The key type in NSMutableDictionary is NSString, the value type is NSArray, which contains a list of object which implements NSCoding. ...
40
votes
7answers
11k views
Can you animate a height change on a UITableViewCell when selected?
I'm using a UITableView in my iPhone app, and I have a list of people that belong to a group. I would like it so that when the user clicks on a particular person (thus selecting the cell), the cell ...
40
votes
7answers
32k views
vs [UIImage imageWithData…]
I want to load some images into my application from the file system. There's 2 easy ways to do this:
[UIImage imageNamed:fullFileName]
or:
NSString *fileLocation = [[NSBundle mainBundle] ...
39
votes
5answers
31k views
MKMapView Zoom and Region
I'm familiar with using Google Maps Javascript API. Recently I started using MapKit framework for an iphone project, but I'm having a hard time to figure out zooming and setting a region on map.
In ...
39
votes
9answers
28k views
Tab bar controller inside a navigation controller, or sharing a navigation root view
I'm trying to implement a UI structured like in the Tweetie app, which behaves as so: the top-level view controller seems to be a navigation controller, whose root view is an "Accounts" table view. ...