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 do I create a textured background (image palette) color like grouped tableview background color?

I was wondering if anyone knows how to setup a new textured color in the palette. See the image below. I tried to click on Other.... and then put a image palette on. like so: So now I can select only one pixel out of it. I wish I could select…
Farini
  • 923
  • 1
  • 18
  • 35
4
votes
1 answer

NSClassFromString() returns a class even when class should not be available

I am currently testing an app on an iPhone 3G with iOS 4.0. I have the following code to check if this Class is available. if (NSClassFromString(@"CLGeocoder")) In the documentation it states that CLGeocoder is available for iOs 5.0 and later. But…
BObereder
  • 1,046
  • 1
  • 13
  • 29
4
votes
2 answers

Objective C : @property declaration and instance variable declaration

Though the question is basic, but I found it very crucial to understand to proceed with IOS programming. Sometimes we used to declare only instance variable and we don't set any associated property to it. Some where we just declare the properties…
Pankaj Gupta
  • 81
  • 1
  • 11
4
votes
1 answer

MonoTouch: How to set the "do not back up" attribute

I am trying to follow the following guidance from Apple about local file storage. How do I set the "do not back" attribute on files created by my apps in MonoTouch? Technical docs here, but I can't find this in…
Ian Vink
  • 66,960
  • 104
  • 341
  • 555
4
votes
1 answer

iOS, objective c throw exception at the very start

In the app delegade i get an exception and i don't have any idea why. Here is the code: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[[UIWindow alloc]…
Nir
  • 2,497
  • 9
  • 42
  • 71
4
votes
5 answers

How do push notifications on the iPhone determine which users are notified?

I'm just trying to understand push notification more. Let's say I have a web service that my app connects to that needs a user to sign in with a username and password. And this all works fine when running the app. Now... how does the web service…
Popeye
  • 11,839
  • 9
  • 58
  • 91
4
votes
4 answers

iOS: Trying to add Navigation Bar to Modal UITableViewController

I'm following the CoreDataRecipes app for modaly showing the add screen when I want to add a new item. However I cannot get the bar to display at the top so I can press 'Done' or 'Cancel'. In the xib calling the modal controller I have the + button…
Bot
  • 11,868
  • 11
  • 75
  • 131
4
votes
1 answer

property not found on object of type

this seems just bizarre as i am not able to resolve it and stuck over it. I am using storyboard to navigate between tableview and a detailview. It was working fine when i was passing a single (NewsRecord) object from my tableview…
southpark
  • 541
  • 2
  • 5
  • 19
4
votes
1 answer

How do I obtain network information in iOS 5?

I would like to know what the simplest/best way for obtaining information about the current network connection (if any) programmatically in iOS. More specifically: Network Connection Type (3G or Wireless) Network Operator SSID of network BSSID of…
Groppe
  • 3,819
  • 12
  • 44
  • 68
4
votes
2 answers

Something like prepareForSegue but for when going back

In my iOS app, I'm using a UINavigationController with segues setup in Xcode. For one of the views, I want to hide the navigation bar, and for the others, I want it to show up. I am able to successfully hide the bar in the main view, then nicely…
Brice
  • 73
  • 1
  • 5
4
votes
1 answer

UIPageViewController and landscape

I have been trying the following and nothing is working NSDictionary *pageViewOptions = [NSDictionary dictionaryWithObjectsAndKeys:UIPageViewControllerOptionSpineLocationKey, [NSNumber…
4
votes
1 answer

NSFetchedResultsController keep reference to deallocated delegate controller in storyboard, causing crash

I have a simple UIViewTable, with a drill-down detail realized with a UINavigationController push segue in a storyboard. It happen from time to time, that the table view controller seems to gets deallocated, while I am in the detail view, therefore…
4
votes
3 answers

jquery AJAX stopped working with iOS 5.0.1

The following piece of logic used to work with both jquery 1.4.4 and 1.7.1 on all mobile devices that we're supporting: $.ajax({ url: 'http://www.example.com/someurl', type: 'GET', dataType: 'text', timeout: 60000, success: function(data)…
Lukas Eder
  • 211,314
  • 129
  • 689
  • 1,509
4
votes
3 answers

Convert NSString into NSTimeInterval

I tried to make a countdown with the NSTimeInterval. But I want to be able to change the interval without releasing an update each time. So I tried to import the Timeinterval from my website. I've stored the numbers for the NSTimeInterval in a…
AmiiQo
  • 353
  • 1
  • 7
  • 17
4
votes
3 answers

iPhone App for restricted set of users?

Is it possible to create an iPhone App for certain group of users ? Like, can we create some kind of private group on App Store and our clients could go to that group and then the app would be available to them ? If my app has a start-up page like…
Maverick ...
  • 87
  • 1
  • 9