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

Deauthorize App from Twitter iOS5 [Accounts Api]

Is it possible to use the new iOS Twitter API to remove an app's integrated twitter authorization. I am searching for a way to do this from the app itself. You can imagine the user switching a UISwitch to authorize and de-authorize. What I've found…
arithma
  • 438
  • 5
  • 13
4
votes
2 answers

IOS 5 Local Notifications While in Foreground, is there a way

On IOS 5, we now have the notification bar on top to put messages. I have seen that Local Notifications will only happen if the app is in the background (not sure when queued, and / or when the notification is to fire, assume the latter). Is there…
ort11
  • 3,359
  • 4
  • 36
  • 69
4
votes
3 answers

How to inject exif metadata into an image, without copying the image?

I have previously asked this question: How to write exif metadata to an image. I now have found a way to inject metadata. However, it results in a copy of the image into memory. With large images, and the need to already have a copy in memory, this…
akaru
  • 6,299
  • 9
  • 63
  • 102
4
votes
1 answer

Using FlurryAnalytics logEvent:withParameters

When a user enters a search query, I'd like to track: 1) Their search term 2) Number of results returned 3) CFUUID Can someone tell me if all of these parameters can be put into 1 Dictionary or do I need to create a separate Dictionary for every…
Slinky
  • 5,662
  • 14
  • 76
  • 130
4
votes
3 answers

How to make a UIToolbar show up in Storyboard for visual editing

I'm trying to make a UIToolbar that I manually inserted in the bottom part of a view controller (shown below) appear in the Storyboard visual editor. I can still add drag objects inside it using Document Outline by clicking on the triangle in the…
uv.
  • 244
  • 2
  • 10
4
votes
1 answer

iOS5 Region Monitoring Accuracy

I am trying to get precise region monitoring working with iOS5/iPhone 4G and I don't seem to be having much luck. To be clear, I AM able to get region enter events; it's just that I am getting them prematurely. Let me explain. This is my code for…
salil
  • 407
  • 3
  • 14
4
votes
3 answers

Check if NSEntityDescription key exists

I need to check if an NSEntityDescription key exists before trying to set the value. I have a dictionary of data from JSON and don't want to try setting keys that do not exist in my object. Appointment *appointmentObject = [NSEntityDescription…
Bot
  • 11,868
  • 11
  • 75
  • 131
4
votes
2 answers

Does iOS 5.1 clear the localStorage when I close a PhoneGap app in the multitasking bar?

I have an app that saves a bookmark of the readers position an put in into localStorage. When I close the App on iOS 5.1 the bookmark is gone, but on 5.0.1 it´s still there?
Lukas Schmidt
  • 41
  • 1
  • 2
4
votes
1 answer

Receive udp broadcast packets ios

I'm almost completely done with and iOS client for my REST service. The only thing I'm missing is the ability for the client to listen on the network for a UDP broadcast that receives the host display name and base URL for uploads. There could be…
nick
  • 2,833
  • 3
  • 34
  • 61
4
votes
2 answers

How and where would you use instantiateViewControllerWithIdentifier

UIStoryboard *mainStoryboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle: nil]; MenuScreenViewController *controller = (MenuScreenViewController*)[mainStoryboard …
CodeGeek123
  • 4,341
  • 8
  • 50
  • 79
4
votes
1 answer

Send current location through an SMS

I'm trying to get my app to be able to send its current GPS location through an SMS to a preentered phone number. I have my code right now that only brings up an SMS window inside the app in which I can edit in the receiving number and a body. What…
Marcus
  • 47
  • 1
  • 5
4
votes
7 answers

iPhone with iOS 5.1 not detected with XCode 4.2

My XCode 4.2 does not detect iPhone with iOS 5.1. I have MAC OS X 10.6.7 installed, with XCode 4.2 and iPhone with 5.1 If I build app for iOS 5.0 it works, but not 5.1. I want to submit my app to appstore today, will it be accepted? And How do I…
iOSDev
  • 3,617
  • 10
  • 51
  • 91
4
votes
4 answers

Error: Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]

The full error is: Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key. So I have been trying what other people have been saying with…
Peter P
  • 289
  • 1
  • 5
  • 17
4
votes
1 answer

use of undeclared identifier 'NSMigratePersistentStoresAutomaticallyOption'

How come I get this error when I'm declaring the code statement below? use of undeclared identifier 'NSMigratePersistentStoresAutomaticallyOption' NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys: [NSNumber numberWithBool:YES],…
4
votes
2 answers

Deleting last row in a section -> crash, using NSFetchedResultsController

I'm using NSFetchedResultsController. Previously I had a similar issue when the database has no entries for the tableview but then one is created, I turned out there has to be at least one section, so I fixed that. But now it crashes when I have for…
Pieter
  • 1,751
  • 3
  • 30
  • 65