Questions tagged [ios5]

iOS 5 is Apple's fifth mobile operating system, released on Oct 13, 2011. It runs on iPhone 3GS, iPhone 4, iPhone 4S, iPod Touch 3rd and 4th generation, as well as all iPad models. It was succeeded by iOS 6.

iOS 5 is the fifth version of the iOS mobile operating system designed by Apple Inc. It was released by Apple on Oct 12, 2011, and runs on

  • iPhone: iPhone 3GS, iPhone 4 and iPhone 4S
  • iPad: iPad, iPad 2 and iPad 3rd generation (with Version 5.1)
  • iPod: 3rd and 4th generation

iOS 5 Software Update v1.0

This update provided over 200 features like Notification Center, iMessage, Newsstand, Reminders, on-device setup and many more (see the Wikipedia iOS History article for more information).

It was preceded by (whose final version was 4.3.5) and succeeded by , which was released on September 19, 2012.

See also for further information.

Related

11775 questions
125
votes
16 answers

iPhone : How to detect the end of slider drag?

How to detect the event when the user has ended the drag of a slider pointer?
DroidHeaven
  • 2,414
  • 3
  • 25
  • 31
117
votes
6 answers

Explanation of strong and weak storage in iOS5

I am new to iOS5 development and using objective-c. I have trouble understanding the difference between strong and weak storage. I have read the documentation and other SO questions, but they all sound identical to me with no further insight. I…
KMC
  • 19,548
  • 58
  • 164
  • 253
116
votes
4 answers

Declaration/definition of variables locations in ObjectiveC?

Ever since starting to work on iOS apps and objective C I've been really puzzled by the different locations where one could be declaring and defining variables. On one hand we have the traditional C approach, on the other we have the new ObjectiveC…
Alexandr Kurilin
  • 7,685
  • 6
  • 48
  • 76
113
votes
6 answers

To ARC or not to ARC? What are the pros and cons?

I've yet to use ARC, since the majority of the code in the project I'm working on at the moment was written pre-iOS 5.0. I was just wondering, does the convenience of not retaining/releasing manually (and presumably more reliable code that comes as…
Simon Withington
  • 1,485
  • 2
  • 11
  • 17
113
votes
21 answers

Couldn't register with the bootstrap Server

I just changed some code in my program and got this error: Couldn't register com.yourcompany.XXX with the bootstrap server. Error: unknown error code. This generally means that another instance of this process was already running or is hung in…
MadProfit
  • 1,174
  • 2
  • 8
  • 8
112
votes
11 answers

"Application tried to present modally an active controller"?

I just came across a crash showing a NSInvalidArgumentException with this message on an app which wasn't doing this before. Application tried to present modally an active controller UITabBarController: 0x83d7f00. I have a UITabBarController…
Javier Soto
  • 4,840
  • 4
  • 26
  • 46
109
votes
7 answers

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 I ignore that? Does it matter?
Geekgirl
  • 1,322
  • 3
  • 11
  • 17
108
votes
3 answers

Override setter with arc

@interface Article : NSObject @property (nonatomic, strong) NSString *imageURLString; @end @implementation Class @synthesize imageURLString = _imageURLString; - (void)setImageURLString:(NSString *)imageURLString { _imageURLString =…
rowwingman
  • 5,589
  • 7
  • 33
  • 50
107
votes
2 answers

How does View Controller Containment work in iOS 5?

In WWDC 2011 Session 102, Apple introduced View Controller Containment, which is the ability to create custom view controller containers, analogous to UITabBarController, UINavigationController, and the like. I watched the examples several times.…
Gregory Higley
  • 15,923
  • 9
  • 67
  • 96
103
votes
8 answers

Is it possible to target older iOS versions when using Xcode 4.2 and iOS 5 SDK?

I just recently downloaded the Xcode 4.2 with iOS 5 SDK package and I immediately noticed that I am unable to use my iPhone 3Gs with iOS 4.2.1 for debugging. I am only able to debug and test on my iphone 4 with iOS 5 installed. For any of my…
Greg Ellis
  • 1,957
  • 3
  • 19
  • 27
102
votes
3 answers

How to add a footer to a UITableView in Storyboard

I'm fairly new to iOS development. I want to add a footer to the table view in a UITableViewController. I've made the view I want to use as the footer graphically in Storyboard, however I can't work out how to hook it up as the footer to my table…
Jon Cox
  • 10,622
  • 22
  • 78
  • 123
98
votes
18 answers

iOS5 Storyboard error: Storyboards are unavailable on iOS 4.3 and prior

I've built a small app using storyboards and it ran great. Just before final testing I decided to try it out to see if it runs on iOS 4.3. I clicked on the gray 5.0 in the project settings and selected 4.3. The app failed to build with the following…
Alex Stone
  • 46,408
  • 55
  • 231
  • 407
96
votes
6 answers

How to build for armv6 and armv7 architectures with iOS 5

In iOS5 Apple drops the armv6 architecture from the ARCHS_STANDARD_32_BIT. In order to keep the support for iPhone3G I still want to compile in armv6 even in iOS5. Did anyone find a solution for this?
iGranDav
  • 2,450
  • 1
  • 21
  • 25
95
votes
7 answers

Container View Controller Examples

Can anyone point me to any good examples of creating a Custom View Controller as a Container View Controller? The only documentation I can find is a couple of paragraphs in the UIViewController Class Reference. I feel I need a little more…
Undistraction
  • 42,754
  • 56
  • 195
  • 331
91
votes
5 answers

What is the iOS 5.0 user agent string?

What is the iOS 5.0 user agent string? Here is the iOS 4.0 user agent: What is the iPhone 4 user-agent?
chown
  • 51,908
  • 16
  • 134
  • 170