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

ARC Project builds OK, multiple warnings when archiving

I released verion 1.0 of my game some months ago. Then, I migrated my game to ARC and developed version 1.1. May main machine runs Snow Leopard, Xcode 4.2 so I can't target iOS 5.1+ or the New iPad, and I can't upgrade that Mac to Lion or greater…
Nicolas Miari
  • 16,006
  • 8
  • 81
  • 189
0
votes
4 answers

How to show selected date on button using datepicker?

when i click on my button am able to show date picker sucessfully.But when i am selecting date from the date picker I am unble to show the selected date on UIbutton. plz help me Here is my code: -(IBAction)btnDateClicked:(id)sender { UIActionSheet…
user1184342
0
votes
1 answer

iOS : Dynamically introduce UILabel or UITextView on an image inside iPad application by tapping and dragging

I need to annotate on an image. Probably a simple solution that I am not able to see at the moment. I need to introduce a UILabel or UITextView onto an image that is currently displaying on the iPad probably by the…
esh
  • 2,842
  • 5
  • 23
  • 39
0
votes
1 answer

How to access first and last cells of UITableView

I have a UITableView with custom cells,, I want to set background images of those custom cells. The background image of first and the last cell of the UITableView should be different than other cells. I have used dequeueReusableCellWithIdentifier:…
iDia
  • 1,397
  • 8
  • 25
  • 44
0
votes
1 answer

Section title not wrapping

I am trying to wrap my section header and UILineBreakModeWordWrap is not helping. Any idea what I am doing wrong? - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { UIView *rOView = [[UIView alloc]…
user1509593
  • 1,025
  • 1
  • 10
  • 20
0
votes
1 answer

Having problems adding objects to array

In the code below, I am trying to add objects to array. No error, but is not adding objects either. Sorry for asking this pretty basic question. Need help The NS Object Definition //DataDefinition.h #import @interface DataDefinition :…
user1509593
  • 1,025
  • 1
  • 10
  • 20
0
votes
1 answer

Cannot find libsqlite3.dylib in Xcode 4.4.1

I'm doing a small project using sqlite db in iOS. But the problem is now, when I go to build phase and Link Binary -> + there is no any library called 'libsqlite3.dylib'. Please any one help me. I'm in really trouble situation Thanks in advance
iDia
  • 1,397
  • 8
  • 25
  • 44
0
votes
1 answer

How to add NavigationController into Tabbed Based Application in iOS

I'm using Xcode 4.4.1. I have created a simple tabbed based application. And then I want to add navigation controller to the application. Can any one tell me how to do that in Xcode 4.4.1. My current code is like this but it doesn't work. ` -…
iDia
  • 1,397
  • 8
  • 25
  • 44
0
votes
2 answers

Hiding or Removing UIImageView and arrangement (IOS 5)

I have a UIViewController that I designed in Interface Builder. near the top of the View it has a UIImageView and then some other Views (Text etc) below. These are set to anchor to the top of the view. In code when the view loads I remove the…
Mark
  • 1,538
  • 5
  • 24
  • 31
0
votes
2 answers

Add a button to the left side of navigation bar on Xcode

I want to create a button at the left side of navigation bar whereby after clicking on it, users will be brought into another page. However I could not make it work. Below is my code. Please help! self.navigationItem.leftBarButtonItem =…
Latonia
  • 1
  • 1
  • 4
0
votes
1 answer

MusicDeviceMIDIEvent: unknown function on iOS5.1

I am attempting to use MusicSequence to control an instance of AUSampler targeting iOS5.1 The project has references to CoreAudio and AudioToolbox the project compiles and runs, but errors on the call to MusicDeviceMIDIEvent with Bad Access Xcode,…
0
votes
1 answer

Error trying to write data using GCDAsyncSocket on iOS 5.1

I'm trying to use GCDAsyncSocket in my iOS app. I've been following all the step provided in the CocoaAsyncSocket's wiki. Here is what I'm doing: GCDAsyncSocket socket = [[GCDAsyncSocket alloc] initWithDelegate:self…
adheus
  • 3,985
  • 2
  • 20
  • 33
0
votes
1 answer

Custom UI Alert View not displaying correctly

Im creating a custom ui alert view. All works ok except any background image that is used for the custom alert has the standard blue overlay over the top of it. Anyway I can get rid of this? (the telephone is the backgroundImage for the alert…
JSA986
  • 5,870
  • 9
  • 45
  • 91
0
votes
1 answer

Continuously pushing view controllers

I'm trying to make a navigation controller that when rotated to landscape pushes a new view onto the stack and when rotated back to portrait it pops that view. So far I can get the landscape view displayed, but the only when I can get the portrait…
apples
  • 13
  • 1
  • 6
0
votes
1 answer

iOS: Window object is nil

I had an app delegate and I needed to add custom tab bar controller to override UITabbarController. I have created Window user interface, reference Window to Appdelegate's Window object. made File's owner to UIApplication, added NSObject and changed…