iOS is an operating system for mobile devices developed by Apple Inc. that is currently used in their iPhone, iPod touch, iPad, and Apple TV (2nd generation) devices. It shares a lot with Mac OS X, but is optimized for touch-based interfaces.

learn more… | top users | synonyms (2)

296
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).
270
votes
31answers
63k 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.
188
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? ...
174
votes
24answers
24k 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 ...
153
votes
11answers
71k 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
71k 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
38k 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 ...
146
votes
44answers
249k 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
100k 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
85k 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 ...
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. ...
119
votes
30answers
117k 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 ...
117
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
16answers
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
32k 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 ...
108
votes
23answers
15k views

Hidden Features of Xcode 4

Now that Xcode 4 is officially released it's time for a follow up to my previous question: Hidden Features of Xcode So what are they? What are those hidden little Xcode 4 hints & tips that you ...
104
votes
9answers
74k 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
65k 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
16answers
48k 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 ...
97
votes
10answers
55k 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
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 ...
83
votes
23answers
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
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
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?
69
votes
3answers
13k views

Why are Objective-C delegates usually given the property assign instead of retain?

I'm surfing through the wonderful blog maintained by Scott Stevenson, and I'm trying to understand a fundamental Objective-C concept of assigning delegates the 'assign' property vs 'retain'. Note, the ...
68
votes
5answers
120k 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
33k 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?
66
votes
5answers
31k 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 ...
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?
66
votes
7answers
39k views

Programmatically get own phone number in iPhone OS

Is there any way to get own phone number by standard APIs from iPhone SDK?
65
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 ...
64
votes
7answers
7k 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 ...
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
7answers
58k 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 ...
54
votes
3answers
6k views

What kind of leaks does Objective-C's automatic reference counting (in Xcode 4.2) not prevent/minimize?

In the Mac and iOS platforms, memory leaks are often caused by unreleased pointers, so it is (as of now, at least) important to check your allocs, copies and retains to make sure each has a ...
54
votes
27answers
40k views

Invalid iPhone Application Binary

I'm trying to upload an application to the iPhone App Store, but I get this error message from iTunes Connect: The binary you uploaded was invalid. The signature was invalid, or it was not signed ...
53
votes
6answers
39k 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 ...
48
votes
2answers
10k views

Why doesn't Xcode 4 create any products?

Regardless of build configuration, building my iPad app does not actually output a .app file. It does run in the iPad simulator and on a device, but when I hit build or build and run, the binary ...
47
votes
13answers
1k views

JS library (with drag n drop) compatible with iOS and regular browsers

Does anyone know of a JS framework that has drag and drop functionality and is compatible with mobile (iOS) and regular browsers? I currently have a web-based app and it is a hassle to make its ...
45
votes
5answers
9k 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 ...
45
votes
13answers
11k views

Xcode 4 Tips and Tricks for Xcode 3 users

As most of you have probably seen, Xcode 4 has been released officially today. Now I know that plenty of devs out there have been using the preview versions, and it'd be great if people could post ...
45
votes
12answers
43k views

Any base64 library on iphone-sdk?

I'd like to do base64 encoding and decoding. But I could not find any support from iPhone SDK. Any suggestion? Thanks.
44
votes
3answers
19k views

iPhone ad hoc build using Xcode 4

I just switched to Xcode 4 and need to make an ad hoc build so my customer can test my app. Yet every tutorial I find is based on Xcode 3 and I can't seem to find my way with Xcode 4 on similar ...
44
votes
6answers
7k views

How does TestFlight do it?

TestFlight offers over-the-air beta distribution of iOS apps (on non-jailbroken devices). How can this be done? Is this an iOS feature, or a vulnerability exploit?
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 ...
42
votes
8answers
1k views

Xcode 4.2 jumps to main.m every time after stopping simulator

This is more of a general annoyance. Every time after stopping the simulator, Xcode jumps to main.m for some reason. On the left nav, it jumps to the Debug Navigator. Is there a way to fix this? ...
42
votes
7answers
5k 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 ...
41
votes
6answers
7k views

XCode4 + iOS 4.3: “No Packager exists for the type of archive”

I just upgraded to XCode 4 and am trying to create an adhoc build of an earlier project. Whenever I use the "Archive" option I either end up with no archive at all in the Organizer window OR there is ...
40
votes
7answers
11k views

Archives not showing up in Organizer for XCode 4

I'm trying to create an IPA in XCode 4, much like the person who asked this question: Xcode 4: create IPA file instead of .xcarchive So--I got my Archive completing successfully--supposedly. It ...
40
votes
7answers
37k views

UIImage: Resize, then Crop

I've been bashing my face into this one for literally days now, and even though I feel constantly that I am right on the edge of revelation, I simply cannot achieve my goal. I thought, ahead of time ...

1 2 3 4 5 866