Specific to Apple's iPhone and/or iPod touch, but inapplicable to iPad. For questions not dependent on hardware, use the "iOS" tag. Another tag to consider is "cocoa-touch" (but not "cocoa"). Please refrain from questions regarding the iTunes App Store or about iTunes Connect.

learn more… | top users | synonyms (6) | iphone jobs

698
votes
35answers
153k views

Vertically align text within a UILabel

I have a UILabel with space for two lines of text. Sometimes, when the text is too short, this text is displayed in the vertical center of the label. How do I vertically align my text to be always at ...
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 ...
472
votes
6answers
91k 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 ...
450
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 ...
363
votes
26answers
144k 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: ...
319
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 ...
303
votes
28answers
114k 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 ...
302
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 ...
292
votes
9answers
136k 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 ...
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?
271
votes
33answers
138k 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 ...
269
votes
19answers
86k views

How to develop or migrate apps for iPhone 5 screen resolution?

The new iPhone 5 display has a new aspect ratio and a new resolution (1136 x 640 pixels). What is required to develop new or transition already existing applications to the new screen size? What ...
263
votes
18answers
87k views

“Warning: iPhone apps should include an armv6 architecture” even with build config set

It's been a while 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 ...
263
votes
22answers
144k 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, ...
246
votes
17answers
136k 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 ...
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?
229
votes
0answers
310k views

iPhone development on Windows [duplicate]

Possible Duplicate: How can I develop for iPhone using a Windows development machine? Is there a way to develop iPhone (iOS) applications on Windows? I really don't want to get yet another ...
224
votes
2answers
66k 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 ...
219
votes
7answers
19k 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, so here are my points to ...
215
votes
11answers
110k views

Check iPhone iOS Version

I want to check if the iOS version of the device is greater then the 3.1.3 I tried things like: [[UIDevice currentDevice].systemVersion floatValue] but does not work, I just want a: if (version ...
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
78k 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
126k 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?
204
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?
201
votes
8answers
24k views

iOS Tests/Specs TDD/BDD and Integration & Acceptance Testing

What are the best technologies to use for behavior-driven development on the iPhone? And what are some open source example projects that demonstrate sound use of these technologies? Here are some ...
196
votes
14answers
48k views

Xcode strange warning: “Multiple build commands for output file”

I am getting an error like this: [WARN]Warning: Multiple build commands for output file /Developer/B/Be/build/Release-iphonesimulator/BB.app/no.png [WARN]Warning: Multiple build commands for ...
194
votes
17answers
60k views

UIDevice uniqueIdentifier Deprecated - What To Do Now?

It has just come to light that the UIDevice uniqueIdentifier property is deprecated in iOS 5 and above. No alternative method or property appears to be available or forthcoming. Many of our existing ...
186
votes
32answers
205k 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 ...
184
votes
8answers
96k views

iOS 6 apps - how to deal with iPhone 5 screen size? [duplicate]

Possible Duplicate: How to develop or migrate apps for iPhone 5 screen resolution? I was just wondering with how should we deal with the iPhone 5 bigger screen size. As it has more pixels ...
183
votes
13answers
80k 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?
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 ...
182
votes
25answers
29k 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, ...
179
votes
4answers
28k views

Version vs build in XCode 4

I have an app that I developed with XCode 3 and recently started editing with XCode 4. In the target summary I have the iOS application target form with fields: identifier, version, build, devices, ...
171
votes
10answers
157k views

How do I create a basic UIButton programmatically?

How can I create a basic UIButton programmatically? For example in my view controller, when executing the viewDidLoad method, three UIButtons will be created dynamically and its layout or properties ...
170
votes
13answers
131k 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 ...
166
votes
2answers
97k views

Convert UTF-8 encoded NSData to NSString

I have UTF-8 encoded nsdata from windows server. I want to convert it to nsstring for iphone. Since data contains characters(like degree symbol) which have different values on both platforms, how do I ...
165
votes
15answers
89k 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 ...
165
votes
17answers
81k 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 ...
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
24answers
40k 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. ...
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?
160
votes
4answers
58k 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 ...
157
votes
7answers
100k 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 ...
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 ...
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
9answers
117k 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 ...
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 ?
148
votes
18answers
11k views

Is MonoTouch now banned on the iPhone? [closed]

A recent post by John Gruber notes that the following legalese: 3.3.1 — Applications may only use Documented APIs in the manner prescribed by Apple and must not use or call any private APIs. Has ...
147
votes
5answers
61k views

Removing App ID from Developer Connection

How do I remove an App ID from the developer program portal area? I mistakenly added a couple of app id's under the wrong login and would like to remove them, but I am not seeing a way to do so. Any ...

1 2 3 4 5 3477