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

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 ...
269
votes
19answers
85k 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 ...
448
votes
15answers
164k 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 ...
117
votes
9answers
81k views

How do I do base64 encoding on iphone-sdk?

I'd like to do base64 encoding and decoding, but I could not find any support from the iPhone SDK. How can I do base64 encoding and decoding with or without a library?
568
votes
12answers
171k 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 ...
166
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 ...
361
votes
26answers
143k 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: ...
210
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?
157
votes
3answers
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 ...
267
votes
33answers
137k 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 ...
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 ...
205
votes
10answers
125k 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?
183
votes
8answers
95k 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 ...
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 ...
140
votes
14answers
83k views

Determine device (iPhone, iPod Touch) with iPhone SDK

Is there a way to determine the device running an application. I want to distinguish between iPhone and iPod Touch if possible.
36
votes
7answers
10k views

Prefixing property names with an underscore in Objective C [duplicate]

Possible Duplicate: How does an underscore in front of a variable in a cocoa objective-c class work? I've always avoided underscores in my variable names, perhaps because its just not what ...
182
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?
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 ...
129
votes
7answers
65k views

Programmatically get own phone number in iOS

Is there any way to get own phone number by standard APIs from iPhone SDK?
82
votes
3answers
44k views

How do I apply a perspective transform to a UIView?

I'm looking to perform a perspective transform on a UIView (such as seen in coverflow) Does anyonew know if this is possible? I've investigated using CALayer and have run through all the pragmatic ...
468
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 ...
223
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 ...
63
votes
11answers
36k views

How to force NSLocalizedString to use a specific language

on iPhone NSLocalizedString returns the string in the language of the iPhone. Is it possible to force NSLocalizedString to use a specific language to have the app in a different language than the ...
48
votes
8answers
73k views

iPhone/iOS JSON parsing tutorial

As a learning experience, I want to make an iphone application that calls a webserver/webservice, retrieves a JSON response, and uses that response to populate the rows of a UITableView (assuming it ...
156
votes
7answers
99k 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 ...
58
votes
9answers
60k views

parsing HTML on the iPhone [closed]

Can anyone recommend a C or Objective-C library for HTML parsing? It needs to handle messy HTML code that won't quite validate. Does such a library exist, or am I better off just trying to use ...
91
votes
10answers
36k views

How to detect iPhone 5 (widescreen devices)?

I've just upgraded to XCode 4.5 GM and found out that you can now apply the '4" Retina' size to your view controller in the storyboard. Now if I want to create an application that runs on both iPhone ...
65
votes
6answers
64k views

How can I upload a photo to a server with the iPhone?

I'm writing an iPhone app that takes a photo and then uploads it to a server. How do I upload a photo to a server with Cocoa in Xcode? I suppose I use NSUrl somewhere. Thanks!
87
votes
9answers
36k views

Is it possible to register a http+domain-based URL Scheme for iPhone apps, like YouTube and Maps?

I'd like to have iOS to open URLs from my domain (e.g. http://martijnthe.nl) with my app whenever the app is installed on the phone, and with Mobile Safari in case it is not. I read it is possible to ...
61
votes
3answers
49k views

AES Encryption for an NSString on the iPhone

Can anybody point me in the right direction to be able to encrypt a string, returning another string with the encrypted data? (I've been trying with AES256 encryption.) I want to write a method which ...
57
votes
4answers
25k views

How to take a screenshot programmatically

I want a screenshot of the image on the screen saved into the saved photo library
95
votes
13answers
214k views

How can I deploy an iPhone application from Xcode to a real iPhone device?

How can I deploy an iPhone application from Xcode to real iPhone device without having a US$99 Apple certificate?
101
votes
13answers
103k 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 ...
87
votes
7answers
73k views

Add UIPickerView & a Button in Action sheet - How?

My application requires following things to be added in an action sheet. UIToolbar Button on UIToolbar UIPicker Control I have included an image to understand my requirements. Could you please ...
51
votes
2answers
24k views

How do I export UIImage array as a movie?

I have a serious problem: I have an array with several UIImage objects. What I now want to do, is create movie from those images. But I don't have any idea how to do so. I hope someone can help me or ...
68
votes
16answers
45k views

Detecting which UIButton was pressed in a UITableView

I have a UITableView with 5 UITableViewCells. Each cell contains a UIButton which is set up as follows: - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath ...
119
votes
12answers
76k views

Is there a barcode recognition framework for iOS?

Is there a framework or other sample code for doing barcode recognition on iPhone / iPad?
145
votes
4answers
83k 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 ?
79
votes
17answers
71k 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 ...
126
votes
8answers
97k 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 ...
140
votes
6answers
39k views

Build fat static library (device + simulator) using Xcode and SDK 4+

It appears that we can - theoretically - build a single static library that includes both simulator and iPhone and iPad. However, Apple has no documentation on this that I can find, and Xcode's ...
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 ...
68
votes
7answers
60k views

Cropping a UIImage

I've got some code that resizes an image so I can get a scaled chunk of the center of the image - I use this to take a UIImage and return a small, square representation of an image, similar to what's ...
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?
54
votes
4answers
12k views

Reducing piracy of iPhone applications

What are accepted methods to reduce iPhone application piracy, which do not violate Apple's evaluation process? If my application "phones home" to provide the unique device ID on which it runs, what ...
92
votes
14answers
22k 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 ...
28
votes
6answers
20k views

Has anyone implemented the PayPal API through a native iPhone app?

It seems the only way to stay "in app" is to give them a UIWebView of the paypal mobile site and let them complete the transaction there, otherwise the user would need to use their API key. Does this ...
56
votes
10answers
64k views

How to Rotate a UIImage 90 degrees?

I have a UIImage that is UIImageOrientationUp (portrait) that I would like to rotate counter-clockwise by 90 degrees (to landscape). I don't want to use a CGAffineTransform. I want the pixels of the ...
25
votes
7answers
28k views

How to call Objective-C from Javascript?

I have a WebView, and I want to call a view in Objective-C from JavaScript. Does someone know how I can do this? I have this code in my ViewController: - (BOOL)webView:(UIWebView *)webView2 ...
693
votes
35answers
152k 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 ...

1 2 3 4 5 474