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
1 answer

How does UIScrollView work with StoryBoard and show different UIViewControllers?

I have a StoryBoard. In that there is a UIViewController - on that I have put UIScrollView and UIPageControl. And on each page (say I have 3) I am trying to load a UIViewController (that shows different labels and table values). Problem - I am able…
Aman
  • 105
  • 2
  • 10
4
votes
1 answer

Getting iOS 5 AVPlayer to display the last frame of the video when playback completes instead of a black screen

I am making some modifications to an iPad app written by somebody else and one of the things I need to fix is that the video needs to continue to show the last frame when playback is complete rather than the screen just going black. On the iPad…
Dan Dyer
  • 53,737
  • 19
  • 129
  • 165
4
votes
3 answers

Align table cells to bottom in IOS5

I have a UITableViewController with 3 static cells on it in one section. I'd like to align the whole table to the bottom, not to the top. I tried to set several settings in Xcode bit could not solve it. How can I do this? UPDATE: so, this is the…
Tom
  • 3,899
  • 22
  • 78
  • 137
4
votes
2 answers

Exception when loading NIB from bundle

I get a crash as soon as I try to show a view from a bundle. Here's the setup: Project contains a bundle CFramework.bundle inside the app's main bundle CFramework.bundle contains GigyaFBPreviewController.xib and images it uses, in its…
meelawsh
  • 617
  • 6
  • 8
4
votes
2 answers

How do you use a class method to distribute multiple shared instances of UIManagedDocument?

I have a helper class that distributes a shared instance of UIManagedDocument. The idea is that the user requests the UIManagedDocument shared instance for a particular file on disk. In this case, it's a core data store. If the user requests the…
Joey J
  • 1,355
  • 10
  • 26
4
votes
1 answer

Passing an array to a javascript function from objc

I am trying to send an array to a javascript function via objective C. I call the javascript function from my code by - stringByEvaluatingJavaScriptFromString I am now trying to pass an array of values to the javascript function. This is what I…
learner2010
  • 4,157
  • 5
  • 43
  • 68
4
votes
2 answers

Fast Pixel Count on Binary Image- ARM neon intrinsics - iOS Dev

Can someone tell me a fast function to count the number of white pixels in a binary image. I need it for iOS app dev. I am working directly on the memory of the image defined as bool *imageData = (bool *) malloc(noOfPixels * sizeof(bool)); I am…
shreyas253
  • 77
  • 1
  • 7
4
votes
1 answer

UIDatePicker non-continuous minutes

I set my UIDatepicker timeInterval to 30 mins, so it shows it as 30,60 (repeating). I really don't want it to repeat, just show 2 options (like AM/PM). Is there a way to do this without creating it from scratch? Thanks!
user754905
  • 1,799
  • 3
  • 21
  • 29
4
votes
2 answers

didRotateFromInterfaceOrientation: is not called for controller which presented modal controller on iOS 5

There is a view controller (let's name it parent), which presents other view controller (let's name it modal) with presentModalViewController:animated:, and then device is rotated. Both controllers support all orientations. Here what's…
breakp01nt
  • 613
  • 1
  • 8
  • 13
4
votes
5 answers

No audio on iPad with MPMoviePlayerViewController and iOS5, works in the simulator

Ever since I updated to iOS 5, I can't get MPMoviePlayerViewController to play audio on the iPad. Video is perfect, but no audio is heard. It doesn't matter what format I use. It does not work. It works in the simulator, but not on the iPad. -…
RyeMAC3
  • 1,023
  • 1
  • 10
  • 17
4
votes
4 answers

use deprecated methods in iOS 5

I recently upgraded my application from iOS3 to iOS5. And at compile time I have several warnings for using deprecated methods. Two questions: 1- Will I have problems when run the application in an iPhone with iOS 5? 2- If I did not update the…
android iPhone
  • 860
  • 2
  • 11
  • 22
4
votes
4 answers

Is it possible to connect iPhone4S to MBA via CoreBluetooth?

I'm trying to send/receive data between iOS and OSX via Bluetooth. Because GameKit doesn't support OSX, I need to use other options. iPhone4S and latest Mac Book Air support Bluetooth 4.0, so I think it is possible to establish a connection between…
taichino
  • 1,135
  • 1
  • 15
  • 30
4
votes
2 answers

dismissModalViewControllerAnimated works on self but not parentViewController

I got dismissModalViewControllerAnimated to work properly on the following setup but am confused as to why it works on self (the modalViewController) rather than the parentViewController. Here's the setup: I have a UITableViewController with a nav…
LeoAlmighty
  • 91
  • 2
  • 5
4
votes
2 answers

How to create an iOS Time Zone Picker?

My app is a logbook for pilots and I'd like to give the user the option of putting the app in the time zone of their choice. Airline pilots may fly across the world but have to reference their home base time zone when entering flight information. …
Neal
  • 9,487
  • 15
  • 58
  • 101
4
votes
1 answer

IOS5 Is it possible to change the text of Double-high status bar?

In IOS SDK, is it possible to change the heading of the Top red status bar(Double high status bar) as referred in the following link. We are implementing a Voip app and we would like to make that more meaningful than just say "Recording"...
Ashok Jaga
  • 43
  • 3