Questions tagged [ios5.1]

The version of iOS (formerly iPhone OS) that was released by Apple on 7 Mar 2012. iOS 5.1 runs on iPhone 3GS (and newer), iPad 1 (and newer), iPod Touch 3rd generation (and newer).

iOS 5.1 was released on March 7, 2012. It supports the same devices as iOS 5 and was the initial release for the iPad 3. Also see and for more information.

Version 5.1 added new features to the Camera, Clock, Safari, and Photos. Many bug fixes and minor changes were also made to Maps, Phone, Music, Video, and Siri. This update also addressed security issues, network compatibility / features, and some settings.

314 questions
0
votes
1 answer

core text view memory leak

I have created a core text view and visually it's working great but i run it for 30 minutes with a lot of data coming in and it crashes. The debugger starts saying 'received memory warning'. I think the views i'm drawing that refresh on every new…
LanternMike
  • 664
  • 1
  • 5
  • 16
0
votes
1 answer

Jailcoder 1.2.1 / XCode 4.2 for Snowleopard / iOS 5.1.1 - Build Fails adding Project to iPhone 4S

looking for a bit of help. I'm new to Mac as well as XCode, I borrowed a Mac from my friend because I needed to develop an iPhone app. The app is working fine in the simulator so I want to try it on my phone. Since I'm not a paid developer and my…
Killerb81
  • 53
  • 6
0
votes
1 answer

Could not disable back button in storyboard

Scene is with Storyboard, here is the Structure UINavigationController > NavigationController > UITabBarController > UIViewController I am trying below options to hide back button over to last UIViewController but it doesn't…
Rohit Mandiwal
  • 10,258
  • 5
  • 70
  • 83
0
votes
1 answer

NSArray has 5 objects in iOS6 but 4 objects in iOS5?

[taskValues count] is 5 under iOS6.0 and 4 under iOS5.1. Help :) NSArray *taskValues = [NSArray arrayWithObjects:task.name, task.description, task.duration, task.notification, task.notificationThereafter,…
ToddB
  • 2,490
  • 3
  • 23
  • 40
0
votes
1 answer

ios app hits straight shouldstartloadwithrequest after coming from background instead

I have a webview in my mainviewcontroller and i am laoding a webpage in viewdidload method as below: - (void)viewDidLoad { [super viewDidLoad]; NSURLRequest *requestObj = [NSURLRequest requestWithURL:url]; [_loginWebView…
Jatin
  • 1,668
  • 2
  • 16
  • 23
0
votes
1 answer

iPad Auto rotate issues building with iOS 6

I realise this is a very common issue but none of the solutions I have found solve my problem. To fix the crashing issue with Game Center when launched in landscape you must add the supported interface orientations for ALL orientations (which I have…
Asheh
  • 1,547
  • 16
  • 25
0
votes
1 answer

Twitter login with compatibility of ios5.0,5.1,6.0

As twitter framework is added in ios5.0 I am using its class TWTweetComposeViewController if([TWTweetComposeViewController canSendTweet]) { NSLog(@"can send tweet"); } else{ NSString *message = @"The application cannot…
Heena
  • 2,348
  • 3
  • 32
  • 58
0
votes
1 answer

How to reach NSDictionary properties that have a class?

I've created an NSMutableArray with a class "Adealer" for it's objects. In my "listVC" I populate all the properties (as shown below) within a loop, where the "Adealer" class is used to create objects. I then transferred one object from that array…
Mac
  • 111
  • 1
  • 11
0
votes
1 answer

Can not show rightBarButtonItem on ipad

This is my code : UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:vc]; UIBarButtonItem *anotherButton = [[UIBarButtonItem alloc] initWithTitle:@"RETURN" style:UIBarButtonItemStylePlain…
why
  • 23,923
  • 29
  • 97
  • 142
0
votes
1 answer

Programmatically setting UIScrollView Orientation

Is here any way to set UIScrollview orientation by coding? Actually I am creating scrollview programmatically and want to set its orientation landscape. I can't find any way on google and apple's docs.
NightFury
  • 13,436
  • 6
  • 71
  • 120
0
votes
1 answer

facebook sdk 3.1-ios compatible with ios 5.1 -5?

regards I have an application that uses the Facebook API for certain features This application should run both 5.1 and 6 ios 5 my question is the Facebook API 3.1 is compatible with iOS 5 and 5.1 thank you very much
asl87
  • 105
  • 3
  • 11
0
votes
2 answers

iOS 5.1 dequeueReusableCellWithIdentifier throws NSInvalidArgument exception

I have an app that has been working great on iOS6.1. Today I realized I should probably try to make this compatible for iOS5 as well. I tried running it on the iOS 5 simulator and am getting an exception thrown on my dequeCell method call. I can't…
Chase Roberts
  • 9,082
  • 13
  • 73
  • 131
0
votes
1 answer

iOS: Facebook error "missing message or attachment"

Upgrading my app. Target is iOS5.1. Xcode 4.5.2 and am using FacebookSDK 3.0 along with Twitter Frameworks. App is logging into Facebook without issue. When I attempt to publish a post, I get this returned in the log: 2012-12-18 10:39:31.934…
Marc Watson
  • 255
  • 3
  • 16
0
votes
1 answer

iOS 5.1: Handling close modal dialog

I have a UIViewController A which opens up a modal popup dialog B via performSegueWithIdentifier. When the modal windows B closes (or a button on it is pushed), I'd like to call a function back on the first view controller A. Which customization…
checkmate711
  • 3,301
  • 2
  • 35
  • 45
0
votes
1 answer

Exception when presenting modal view controller: NSInternalInconsistencyException

when I try to present a modal view controller, an exception occurs: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Attempting to begin a modal transition from to…
stk
  • 6,311
  • 11
  • 42
  • 58