Tagged Questions
Specific to Apple's iPhone and/or iPod touch, but not applicable to iPad or other iOS devices. If a question does not depend on the hardware, use the "ios" tag. Other tags you should consider are "objective-c" and "cocoa-touch" (but not "cocoa").
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 ...
212
votes
7answers
56k views
UIImagePickerController, UIImage, Memory and More? [closed]
I've noticed that there are many questions about how to handle UIImage objects, especially in conjunction with UIImagePickerController and then displaying it in a view (usually a UIImageView). Here is ...
204
votes
14answers
79k views
Comparison between Corona, Phonegap, Titanium [closed]
I am a web developer and I want to move my web products to iPhone. One of the products is like Google Maps: show map on the phone screen, you can drag or resize the map and view some information that ...
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?
...
172
votes
7answers
16k views
What are your experiences selling on the Android Market? [closed]
I've been hearing some good things about Google's Android Market recently, and I might look into developing for android (currently develop for iPhone OS) at some point. Are any of you Android ...
169
votes
24answers
23k views
Open source iOS components? Reusable views, controllers, buttons, table cells, etc?
Are there any repositories around for open sourced iPhone and iPad components?
For instance, I have found myself needing to create several new types of table cells to mimic some of Apple's existing ...
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:
...
149
votes
6answers
37k views
Warning iPhone apps should include an armv6 architecture even with build config set
It's been awhile since I've had to adjust project build settings. After upgrading to a recent SDK I'm having trouble building my ad hoc distribution configuration.
Build generates this warning and ...
145
votes
44answers
248k views
iPhone development on Windows
Is there a way to develop iPhone (iOS) applications on Windows? I really don't want to get yet another machine.
There is a project on http://code.google.com/p/winchain/wiki/HowToUse that seemed to ...
136
votes
18answers
99k views
Starting iPhone app development in Linux?
I've heard that you need to get a Mac if you want to develop iPhone apps. Is this true?
Is it possible to develop iPhone apps using Linux? If yes, what do I need and where do I download the ...
132
votes
6answers
84k views
How do you beta test an iphone app?
How can you beta test an iPhone app? I can get it on my own device, and anyone that gives me a device, I can run it on theirs, but is there a way to do a limited release via the app store for beta ...
130
votes
22answers
8k views
Is MonoTouch now banned on the iPhone?
Does this in fact ban the use of Monotouch for the IPhone?
EDIT UPDATE: As of iOS v4.1's release, this section was REMOVED from the iPhone terms, and MonoTouch is now totally, 100% allowed. Of ...
129
votes
24answers
30k views
Tips for a successful AppStore submission? [closed]
In a day or two I'll be ready to submit my iPhone app to the AppStore and I'm curious whether people who have gone through this process have any tips / suggestions for a smooth submission process.
...
118
votes
30answers
116k views
iPhone app signing: A valid signing identity matching this profile could not be found in your keychain
I'm pulling my hair out over this. I just downloaded the iPhone 3.0 SDK, but now I can't get my provisioning profiles to work. Here is what I have tried:
Delete all provisioning profiles
Delete ...
116
votes
20answers
56k views
iPhone - strange error when testing on simulator
I was testing my app on the simulator when it crashed on clicking a button of a UIAlertView. I stopped debugging there, made some changes to the code and built the app again. Now when I run the ...
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?
111
votes
15answers
81k views
How to change the name of an iPhone app?
I began an iPhone project the other day with a silly development code name, and now I want to change the name of the project since its nearly finished.
But I'm not sure how to do this with Xcode, ...
109
votes
3answers
31k views
Fast and Lean PDF Viewer for iPhone / iPad / iOs - tips and hints?
There has been many Questions recently about drawing PDF's.
Yes, you can render PDF's very easily with a UIWebView but this cant give the performance and functionality that you would expect from a ...
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 ...
103
votes
23answers
158k views
How can I develop for iPhone using a Windows development machine?
Is there any way to tinker with the iPhone SDK on a Windows machine? Are there plans for an iPhone SDK version for Windows?
The only other way I can think of doing this is to run a Mac VM image on a ...
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?
98
votes
10answers
64k views
iPhone App Minus App Store?
I've been looking into iPhone development, but I've been having problems coming up with the answer to a certain question.
If I create an application on my Mac, is there any way I can get it to run on ...
97
votes
10answers
54k views
How do I detect when someone shakes an iPhone?
I want to react when somebody shakes the iPhone. I don't particularly care how they shake it, just that it was waved vigorously about for a split second. Does anyone know how to detect this?
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 ...
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?
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 ...
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?
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 ...
82
votes
12answers
42k views
Are there free iPhone navigation bar icon sets available?
I want to use up/down icons like the ones used by "mail" in the upper-right corner when you're viewing a specific message. Are these icons available for free anywhere?
Beyond that, are there any ...
82
votes
9answers
74k views
How to access SOAP services from iPhone
I'm planning to develop an app for the iPhone and that app would have to access a couple of SOAP services. While doing some basic checking in the iPhone SDK I was not able to find any support for ...
78
votes
18answers
10k views
XCode 4 says “finished running <my app>” on the targeted device — Nothing happens
The app neither installs nor runs on my device. All provisioning profiles are up to date. I've already tried deleting and re-installing them.
The status bar shows that xcode is building my project, ...
78
votes
21answers
40k views
Are there any Open-source iPhone applications around?
I'm looking for open source iPhone applications. There are many sample applications around, but not many "complete" applications. Any ideas?
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
11answers
21k views
What is the PastryKit Framework?
I'm trying to find any information I can on the PastryKit Javascript Framework. It appears to be in use on the iPhone User Guide that is displayed on the iPhone itself in Mobile Safari, but I cannot ...
74
votes
22answers
99k views
GUI Design Tools to mock up iPhone & Android applications [closed]
I am about to embark on developing a mobile application for both the iPhone and the Android based phone. I have most of my gui mock ups written down on a white board and some in my head. I need to ...
73
votes
14answers
38k views
Symbolicating iPhone App Crash Reports
I'm looking to try and symbolicate my iPhone app's crash reports.
I retrieved the crash reports from iTunes Connect. I have the application binary that I submitted to the App Store and I have the ...
73
votes
6answers
44k views
How to use NSURLConnection to connect with SSL for an untrusted cert?
I have the following simple code to connect to a SSL webpage
NSMutableURLRequest *urlRequest=[NSMutableURLRequest requestWithURL:url];
[ NSURLConnection sendSynchronousRequest: urlRequest ...
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
18answers
32k views
Stop UIWebView from “bouncing” vertically?
Does anyone know how to stop a UIWebView from bouncing vertically? I mean when a user touches their iphone screen, drags their finger downwards, and the webview shows a blank spot above the web page I ...
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 ...
69
votes
3answers
32k views
UIView's frame, bounds, center, origin, when to use what?
UIView has the concept of frame, bounds, center, and origin, and they all seem to be interrelated. Most of the time, I deal with frame when setting the position and size of a UIView (or subclass). 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
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 = ...
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
5answers
30k views
iOS 5 Best Practice (Release/retain?)
As a beginning iPhone programmer, what is the best practice for writing apps to be used either with iOS 5 or older versions? Specifically, should I continue using the release/retain of data, or should ...