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

iOS 5 page curl with custom View Controller

I am trying to use page curl to show a sub page using Xcode storyboards. Everything is working when I have the sub page as UIViewController, but when I change it to a custom UIViewController, the sub page is black. Happens both on device and…
Tim Walsh
  • 1,089
  • 11
  • 27
4
votes
3 answers

Is it possible to have my closed app run code in iOS?

Let's say that my app in iOS is closed. Would it be possible to set it up so that it runs a piece of its code after a certain period of time?
4
votes
2 answers

Objective C - static variables in categories

I do have a little Problem. Since my UIViewControlles are all named in the same scheme: MyView1Controller.h MyView1Controller.m MyView1.xib MyView2Controller.h MyView2Controller.m MyView2.xib MyView3Controller.h MyView3Controller.m MyView3.xib I…
Alexander
  • 7,178
  • 8
  • 45
  • 75
4
votes
2 answers

iOS5 - sharekit for twitter issue

I am facing keyboard issue in sharekit for iOS5 only.While posting text content to twitter. .I have attached the screenshot for the screen in which I am facing the issues 1.Cancel button is not working 2.Keyboard is not disappearing. If any one has…
user855842
4
votes
2 answers

startMonitoringForRegion in iPhone Simulator

I'm testing region monitoring on the Simulator. Both [CLLocationManager regionMonitoringAvailable] and [CLLocationManager regionMonitoringEnabled] return YES. I added App registers for location updates in plist. I have a global location manager in…
Emanuele Fumagalli
  • 1,476
  • 2
  • 19
  • 31
4
votes
2 answers

Does TWRequest work for the twitter streaming api?

I am trying to make a basic iphone app that shows nearby tweets. I was using the TWRequest object to accomplish this with the twitter search api. Unfortunately, I would actually like to mark the tweets on a map using their GPS coordinates and the…
akhalsa
  • 2,303
  • 3
  • 25
  • 43
4
votes
3 answers

Objective-c Classes runtime definition

Is it possible to define classes at run time in objective-c? E.g. I receive an XML file, that defines an object and create it and use it in run-time?
Infinite Possibilities
  • 7,415
  • 13
  • 55
  • 118
4
votes
1 answer

How do you hook up IBOutlets across scenes in the Interface Builder storyboard?

I have a custom UITableViewController with 2 properties: @property (strong, nonatomic) IBOutlet VenueHeaderViewController *header; @property (strong, nonatomic) IBOutlet VenueFooterViewController *footer; The UIViews of my VenueHeaderViewController…
lmirosevic
  • 15,787
  • 13
  • 70
  • 116
4
votes
1 answer

Core Data SubEntitiesByName When Searching for Entity Using Attribute

I am trying to fetch an entity from the core data depending on the attribute called "name". Here is my code: NSManagedObjectContext *context = [self managedObjectContext]; NSEntityDescription *vegetable = [NSEntityDescription…
azamsharp
  • 19,710
  • 36
  • 144
  • 222
4
votes
1 answer

My app is suffering from major performance issues with iOS 5, can someone help me make sense of this speed test log from instruments?

I have a simple reading app that uses fmdb to talk to the database and then fill up a UIWebview with text. Since the glorious advent of ios 5 it runs very poorly... When I am change chapters in my book via a segmentedControl tap. In ios 4.3, it was…
Lizza
  • 2,769
  • 5
  • 39
  • 72
4
votes
2 answers

unable to access .nib(XIB) files from a framework in iOS

i have created a framework out of my existing code base and tried using it in a new code base. This worked fine. But my application is getting crashed when i try to access the nib files which is a part of my framework bundle. This is the code i am…
A for Alpha
  • 2,904
  • 8
  • 42
  • 76
4
votes
1 answer

How to set the delegate of initial ViewController in a storyboard

I have a Storyboard like this: -- initial --> [PictureListViewController] ----> [PictureDetailViewController] Now I want to set the delegate of my ViewController PictureListViewController. Since it is the first ViewController I can't do this in the…
Besi
  • 22,579
  • 24
  • 131
  • 223
4
votes
0 answers

External Accessory Framework EAAccessoryManager connectedAccessories returns only 1 accessory on iOS 4.2 when there should be more

Calling the connectedAccessories method on the EAAccessoryManager returns a list with only a single accessory (seemly randomly chosen from the available connected accessories in the Bluetooth screen) when running on iOS 4.2 using an iPhone 3GS. In…
Christopher Lightfoot
  • 1,147
  • 1
  • 11
  • 27
4
votes
2 answers

CSS resize property not working on iPad

Today I tried to resize a
using CSS. It works in desktop browsers like Safari, Firefox & Chrome, but it’s not working on iPad. I want to implement resizing of
without using JavaScript. With the resize CSS property, the user can simply…
Anup Singh
  • 1,513
  • 3
  • 16
  • 32
4
votes
1 answer

presentModalViewController without animation in storyboard style

I have a existing iPhone application created using traditional nib interface files. Now I am going to convert the application into iOS5 story board style interfaces. I have changed almost all interface files and working fine. But I am comeup with…
user346749
1 2 3
99
100