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
4
votes
2 answers

Why won't dismissmodalviewcontrolleranimated dismiss UIImagePickerController immediately on ios5?

I have a UITableViewController that pops up a UIImagePickerController, user takes a pic, hits the Use button, Picker dismisses to show a custom thumbnail spinner while the image is being processed, then the spinner is replaced by the actual…
mutatron
  • 563
  • 3
  • 7
  • 19
4
votes
1 answer

Encryption on iOS5 vs iOS4.3

The following code results in status = 0 on iOS4.3 SDK on iOS4.3: size_t mySize, cypherSize; mySize = (secKeyGetBlockSize() - 11); // Code that reads in mySize bytes into buffer and // sets cipherSize to secKeyGetBlockSize(). // [...] status =…
user8472
  • 3,268
  • 3
  • 35
  • 62
4
votes
1 answer

Automatically calculate normals in GLKit/OpenGL-ES

I'm making some fairly basic shapes in OpenGL-ES based on sample code from Apple. They've used an array of points, with an array of indices into the first array and each set of three indices creates a polygon. That's all great, I can make the shapes…
Craig
  • 8,093
  • 8
  • 42
  • 74
4
votes
2 answers

How to customize UITabBar text labels?

I have customized a Tab Bar using the methods from Ray Wenderlich and iOS Blog but because I'm using a light color as background the text labels look awful and I want to change them to match my style. Is it possible and how? If its not possible or…
Tony
  • 41
  • 3
4
votes
1 answer

iOS5 CoreData Entity showing wrong NSNumber value, works on iOS4

I have a CoreData entity with an NSNumber property (an Integer 16 in the model). I have the following code: NSLog(@"raw changeAmount=%d", changeAmount); NSNumber *changeNumber = [NSNumber numberWithInt:changeAmount]; NSLog(@"number changeAmount=%d…
Kenny Wyland
  • 20,844
  • 26
  • 117
  • 229
4
votes
2 answers

A flip card with a scrolling element on each side using -webkit-overflow-scrolling: touch; on iOS 5

I have a problem creating a flip card with a scrolling element on each side with HTML, CSS and JS for Mobile Safari on iOS 5. If you scroll when the card is flipped or not flipped, the scrolling always happens on the element on the back. The…
Senne
  • 455
  • 3
  • 11
4
votes
3 answers

Take screenshot programmatically iOs 5

I'm developing an iOs 5 iPhone app, I would like to take a screenshot programmatically when the user press a button of a view in the story board. I've tried many codes but they are for older versions of iOs. How can I do it in iOs 5. Thanks!!
Marti Serra Vivancos
  • 1,195
  • 5
  • 17
  • 33
4
votes
1 answer

How to pass object between views with a storyboard Created Tab Bar Controller

I have 2 views controlled by a tab bar view controller created by the template Xcode 4 gives out using the storyboard. My first view on the first tab is a data entry page, my second view on the second tab graphs this data. I have an object where the…
Daniel Granger
  • 1,334
  • 1
  • 16
  • 36
4
votes
1 answer

Making universal apps without Interface Builder

I'm using XCode 4.2, with iOS 5, and would like to make a universal app, not using Interface Builder, as outlined in this post, not using a MainWindow.xib. I would also like to separate my iPhone and iPad code, using the technique outlined in Kotan…
coco
  • 2,998
  • 1
  • 35
  • 58
4
votes
2 answers

Locking iPhone disconnects sockets on iOS 5 only

I'm working on a socket based client-server app. When a user running any iDevice on iOS 4, 4.2.1, 4.3.2, etc clicks the lock button while connected to the server, the connection remains alive. However, when I click the lock button on any device…
James V
  • 189
  • 1
  • 2
  • 10
4
votes
1 answer

Using shouldChangeCharactersInRange to limit characters entered, but cannot detect return

I'm using the following code in my UITextField delegate to limit the characters that can be entered: FYI: The UITextField outlet is called nameChoiceField. Plus there is a label outlet called errorMessageLabel. - (BOOL)textField:(UITextField…
Jon Cox
  • 10,622
  • 22
  • 78
  • 123
4
votes
2 answers

How to generate a good, non-changing UDID on an iPhone

In iOS 5 the usage of [[UIDevice currentDevice] uniqueIdentifier] got deprecated. We are now encouraged to use own-generated UUIDs and store them in the app's NSDefaults. That's OK for most usage, I guess. But my question is - is it possible to…
kender
  • 85,663
  • 26
  • 103
  • 145
4
votes
1 answer

The differences between [UIView transitionWithView...] and [UIView transitionFromView...]

I currently have a view that is contained on a view. The main view controller (parent view) has a property that is hooked up in interface builder to the subview. The subview contains a button. I want the button to flip the subview while keeping…
5StringRyan
  • 3,604
  • 5
  • 46
  • 69
4
votes
1 answer

Cast of 'int' to 'CAMediaTimingFunction *' is disallowed with ARC

Can anyone please suggest alternative to this line of code so that my code becomes compatible with ARC. [animation setTimingFunction:(CAMediaTimingFunction*)UIViewAnimationCurveEaseInOut];
CKK
  • 53
  • 3
4
votes
1 answer

JavaScript submenu doesn't work anymore after iPhone iOS 5 update

I have a javascript menu that works fine on Firefox, IE, Safari and iPhone/iPad iOS 4. Only in the iOS 5 update the submenu shows up very briefly and then disappears when a menuitems has been clicked. Does anyone know what they have changed and how…
Daniel
  • 41
  • 2
1 2 3
99
100