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
2 answers

Determine the Cell of TableView on which UIMenuItem was selected

I am displaying a context menu on the cells of a table view using UIMenuController. UIMenuItem *ren = [[UIMenuItem alloc] initWithTitle:@"Rename" action:@selector(onRenameItem:)]; /* .... then set menu visible on long press ...*/ the…
Husain Basrawala
  • 1,757
  • 15
  • 21
0
votes
1 answer

How can I customize the color of the Navigation Bar?

I am BRAND new to iOS development and am building my first app using Xcode 4.3.2 for iOS5. I am also using storyboards. I want the background color of my navigation bar to be black instead of the default blue color for all of my views in the…
jac300
  • 5,182
  • 14
  • 54
  • 89
0
votes
1 answer

reloadData on tableView crashes when used with uisplitviewController inside a tabbar controller

I am working with a tabbar application. In one of the tabs I have a tableView controller embedded as a SplitView. When this tab becomes active i make a URL call to fetch some data from the server. I am not able to populate the data in the tableView.…
0
votes
2 answers

How to parse my JSON data in IOS5

Can anyone tell me how to parse my json data in IOS5. I'm providing my JSON data below: { "fieldType" : "Alphanumeric", "fieldName" : "Name" },{ "fieldType" : "Numeric", "fieldName" : "Card Num" },{ "fieldType" : "Alphanumeric", "fieldName" :…
Deepak Pillai
  • 105
  • 1
  • 3
  • 12
0
votes
1 answer

Changing background color of selected UITableViewCells in iOS5

My app displays grouped static UITableViews in different screens. Is there anyway of using the appearance proxies [UITableView appearance] or [UITableViewCell appearance] to customise the background color for the selected cells? Basically I would…
Claus
  • 5,662
  • 10
  • 77
  • 118
0
votes
1 answer

EXC_BAD_ACCESS after changing UIDatePicker mode

I have a date picker which is supposed to switch from UIDatePickerModeDateAndTime to UIDatePickerModeTime and vice-versa, depending on the selected table view cell. When the view gets loaded the default mode is UIDatePickerModeDateAndTime, and I can…
Tiago Fernandez
  • 1,453
  • 3
  • 19
  • 36
0
votes
1 answer

Audio is no longer working on iPad3

I've got two reports from users of my app, running iOS 5.1.1 on iPad 3 (iPad 1 & 2 are working fine), that the audio is no longer working. I'm using the AVAudioPlayer from the AVFoundation library. Is anybody else experiencing any similar…
0
votes
1 answer

iOS: Issues with sending unicode text on server

I have come across really frustrating issue related to Unicode text and I am not able to do anything more to fix it. I am using following code to store English and Japanese texts on server from iPad. __block ASIFormDataRequest *request =…
Paresh Masani
  • 7,474
  • 12
  • 73
  • 139
0
votes
1 answer

how to assign values into NSString from database

I am getting TEXT type data from sqlite database into an NSMUtableArray Then I assigned them to NSString variables in this way NSString *billname=[NSString stringWithFormat:@"%@",[tempAyyar valueForkey:@"Bill_Name"]]; but it assignes the value as…
iDia
  • 1,397
  • 8
  • 25
  • 44
0
votes
1 answer

Check Intersect for programmatically generated image views

i Have two images generated like this - (void)moveImage:(UIImageView *)image duration:(NSTimeInterval)duration curve:(int)curve x:(CGFloat)x y:(CGFloat)y { // Setup the animation [UIView beginAnimations:nil context:NULL]; …
inVINCEable
  • 2,167
  • 3
  • 25
  • 49
0
votes
1 answer

iOS: handling HTTP request's unicode characters

When I NSLog HTTP requests response string, it appears as "ãÃÂïãÃâ¬ÃÂãÃÂÃâãÃÂ" and something different appears on UILabel but not the same as I expect in Japanese/Chinese format. I am using ASIHTTPRequest and as mentioned here I have set…
Paresh Masani
  • 7,474
  • 12
  • 73
  • 139
0
votes
2 answers

Using a webview to play an mp3- is it possible to keep it playing even when the screen is locked?

I have a portion of my app that simply launches a webview linked to an mp3 file- it opens the file and plays the audio. What I'd like to do is allow that audio to continue playing even if the user locks their iPhone. (As a side note, is there any…
Homeoftheben
  • 69
  • 1
  • 10
0
votes
1 answer

Saving information to an app's sandbox when downloaded from the app store?

How do you create an app that already has information loaded in its sandbox when downloaded from the app store, instead of being created and saved to its sandbox at first launch on the ios device?
Ivan Diaz
  • 41
  • 1
  • 3
0
votes
0 answers

AVPlayerDemo Advancing to next frame for first time when the current time is zero .

I am using AVPlayerDemo open source code for play back of chosen video. The reason why I am using AVPlayerDemo is seeking of each frame is easy compared to MPMoviePlayerController. In the AVPlayerDemo sample code , I have added a button "Next"…
user1305194
  • 9
  • 1
  • 6
0
votes
1 answer

Removing MBProgressHUD when dialog is displayed and selector method not complete

I am using code to call a method and show the HUD as below HUD = [[MBProgressHUD alloc] initWithView:self.view]; [self.view addSubview:HUD]; HUD.delegate = self; HUD.labelText = @"Signing you up"; // myProgressTask uses the HUD instance to…
StuartM
  • 6,743
  • 18
  • 84
  • 160