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

Custom UINavigationItem disappears on pushViewController

I am running into a weird issue with a custom UINavigationItem disappearing when I push a viewcontroller. Here's my setup: RootViewController is UITabController UITabController Tab1->CustomNavController->ViewController1 …
2
votes
2 answers

-[UITableView reloadData] shows changes only after scrolling

I update the UITableView on timer. I change data in array, then call -[UITableView reloadData]. But nothing is changed until I scroll the table or switch tabs in the tab bar. What's happening? How can I avoid this?
efpies
  • 3,625
  • 6
  • 34
  • 45
2
votes
2 answers

Customizing settings.bundle in iphone

I want to make app settings using plist like the Twitter app settings and have my app name's status appear as "Installed" like done in Twitter.
Aadil Ali
  • 351
  • 1
  • 15
2
votes
1 answer

UIButton showing multiple times on UITableView when created dynamically in UITableViewCell

After trying various options, and reading numerous answers on SO, I am posting this question hoping somebody can provide some insight or a solution to this problem: iOS5.1, XCode 4.4.1, Storyboard, ARC I have a "Grouped" tableview, with each cell…
Rohit Gupta
  • 408
  • 5
  • 10
2
votes
1 answer

Trouble compiling monotouch binding library

I have been trying to bind a lib called Scandit used for scanning barcodes from images. So far I have been unsuccessful. The Library says it supports armv6 arm7 and i386. but I cannot get it to build. lipo -info libscanditsdk-iphone-2.1.17.a …
Nathan
  • 153
  • 1
  • 8
2
votes
1 answer

Convert Runtime-Attributes Size, Point, Rect

I'm using "User Defined Runtime Attributes" for my custom classes in IB. I catch the values in: -(void) setValue:(id)value forKey:(NSString *)key How do I convert values for Size, Point and Rect? NSLog(@"value %@", value) for Size writes: "value…
nashg
  • 23
  • 3
2
votes
0 answers

Set spine location to left in UIPageViewController on landscape

Sorry I am new to this. I am trying to write an ipad app, with a page flipping effect. My app only support landscape view, and I have been testing UIPageViewController on the default Page-Based application project. Everything seems fine, but I…
hook38
  • 3,899
  • 4
  • 32
  • 52
2
votes
2 answers

Objective-C/iOS: How to remove 'values' from an attribute in CoreData?

pretty new to objective-c and VERY new to CoreData - this question feels ridiculously simple, but I can't figure it out despite 1.5 hours of searching! looking for greater minds. situation: have an Entity in CoreData ("AssetType"), and that entity…
toblerpwn
  • 5,415
  • 8
  • 38
  • 46
2
votes
0 answers

IOS 5.1 negative z-index and fixed divs

I have a site which utilises a bottom of the page menu (Position:fixed divs with images in them) using hover CSS on the divs to swap between an icon and for example a search box or a box with social media icons in it etc. It does this by making the…
Brad
  • 21
  • 3
2
votes
1 answer

Programmatically launch UIWebView Keyboard

Javascript n00b here, this question has been asked before but no straight forward answer was given. I am trying to launch the keyboard for an editable UIWebView when the view loads. So far I have the following code in index.html: …
Jeremy Moyers
  • 353
  • 3
  • 12
2
votes
3 answers

xCode 4.2.3 can not compile to iOS 5.1.1 (9B208) or iOS 5.1.1 (9B206)

Yesterday after about a whole nights tinkering i manage to compile for 5.1.1 That was after i downgraded from iOS 5.1.1 (9B208) to iOS 5.1.1 (9B206) as a last desperate attempt. But today afte a restart im back to square one. When i go to the…
DevNull
  • 763
  • 5
  • 17
  • 30
2
votes
1 answer

Interpret Apple crash report for

My app got rejected by Appl App Store review team becase it was crashed on iPhone 4S and iPad (3rd Gen) running iOS 5.1.1, as soon as the app lunches, as they said. I tried this app on an iPhone 4 running iOS 5.1.1 and it ran just fine. They've…
Efi Debi
  • 61
  • 2
  • 12
2
votes
2 answers

How to downgrade iPad 2 from iOS 5.1 to 5.0 for development

I am developing an Application for iPad (iOS)on Xcode 4.2 on MAC OS X 10.6.5 i.e snow leopard and apple has not released sdk for ios 5.1 for snow leopard. i was using my iPad for testing it was working great with ios 5.0.1. i just recently upgrade…
Incredible
  • 86
  • 7
2
votes
2 answers

How to compile expat with iOS SDK 5.1?

How to compile expat with iOS SDK 5.1? I tried to adapt/upgrade from all older scripts, but nothing worked... Could anybody do it already?
Wagner Patriota
  • 5,494
  • 26
  • 49
2
votes
3 answers

Setting UIToolbar background image with iOS5.1

I used the following code to set the image "Sample" as a background color of my UIToolbar self.toolbar.layer.contents = (id)[UIImage imageNamed:@"Sample.png"].CGImage; But it seems the above one does not works with iOS5.1 and the default background…
Confused
  • 3,846
  • 7
  • 45
  • 72