iOS 6 was announced by Apple on June 11, 2012 and released on September 19th, 2012.
702
votes
22answers
98k views
Is Safari on iOS 6 caching $.ajax results?
Since the upgrade to iOS 6, we are seeing Safari's web view take the liberty of caching $.ajax calls. This is in the context of a PhoneGap application so it is using the Safari WebView. Our $.ajax ...
34
votes
11answers
30k views
How to force a UIViewController to Portait orientation in iOS 6
As the ShouldAutorotateToInterfaceOrientation is deprecated in iOS 6 and I used that to force a particular view to portrait only, what is the correct way to do this in iOS 6? This is only for one ...
10
votes
2answers
4k views
Why is glReadPixels() failing in this code in iOS 6.0?
The following is code I use for reading an image from an OpenGL ES scene:
-(UIImage *)getImage{
GLint width;
GLint height;
glGetRenderbufferParameteriv(GL_RENDERBUFFER, ...
89
votes
7answers
22k views
Enabling auto layout in iOS 6 while remaining backwards compatible with iOS 5
What is the best way to take advantage of the new auto layout features of iOS 6 while still providing compability with older devices on earlier versions of iOS?
30
votes
5answers
15k views
Programmatically Request Access to Contacts in iOS 6
Since updating to iOS 6 I've noticed that my code to add a contact to iPhone's address book no longer works. I believe this is a permission related problem, since Apple now requires user permission ...
16
votes
4answers
16k views
shouldAutorotateToInterfaceOrientation is not working in iOS 6
In iOS 6 shouldAutorotateToInterfaceOrientation is not working but it work fine in iOS 5.0 or 5.1.
What should i need to change in iOS 6.
Here is my code
- ...
230
votes
6answers
53k views
File is universal (three slices), but it does not contain a(n) ARMv7-s slice error for static libraries on iOS, anyway to bypass?
I upgraded Xcode version and when using external static libraries, I get this message:
ld: file is universal (3 slices) but does not contain a(n) armv7s slice: /file/location for architecture ...
45
votes
3answers
24k views
whose view is not in the window hierarchy
Just started using Xcode 4.5 and I got this error in the console:
Warning: Attempt to present <finishViewController: 0x1e56e0a0> on <ViewController: 0x1ec3e000> whose view is not in the ...
21
votes
6answers
10k views
Facebook SDK 3.1 - Error validating access token
I'm trying to transition my app to the new Facebook SDK 3.1 (with support for iOS6 authentication).
I had it working just fine, so I then decided to remove the app from my list of authorized apps on ...
21
votes
7answers
26k views
Autorotate in iOS 6 has strange behaviour
I have UITabBarController app which plays video and shows other information in other UITabBar tabs. In iOS 6 UIView rotation methods have been deprecated, and now I need to use shouldAutoRotate and ...
13
votes
2answers
5k views
How to make app fully working correctly for autorotation in iOS 6?
In iOS6, shouldAutorotateToInterfaceOrientation is deprecated. I tried to use supportedInterfaceOrientations and shouldAutorotate to make app working correctly for autorotation but failed.
this ...
8
votes
7answers
12k views
How to change the device orientation programmatically in iOS 6
In iOS 5 we could change the device orientation programmatically like so:
[[UIDevice currentDevice] setOrientation:UIInterfaceOrientationLandscapeRight];
But in iOS 6 setOrientation is depreciated, ...
6
votes
2answers
5k views
UIWebView: HTML5 audio pauses in iOS 6 when app enters background
Good day,
My app is a music playing app. I control the <audio>-Tag with Javascript. So far no problems, play, pause, next and previous buttons are working. When I stand-by the device in iOS 5, ...
31
votes
8answers
9k views
iOS 6: How do I restrict some views to portrait and allow others to rotate?
I have an iPhone app that uses a UINavigationController to present a drill-down interface: First one view, then another, up to four levels deep. I want the first three views restricted to portrait ...
26
votes
17answers
38k views
shouldAutorotateToInterfaceOrientation not being called in iOS 6
I'm using MGSplitViewController and I'm usingshouldAutorotateToInterfaceOrientation to control the size of the master view controller on rotation.
It's all working fine on iOS 5 but on iOS 6 (both ...
19
votes
5answers
23k views
Interface orientation in iOS 6.0
How to use the following methods to support interface orientation in iOS 6.0:
shouldAutorotate
supportedInterfaceOrientations
preferredInterfaceOrientationForPresentation
As ...
30
votes
8answers
25k views
IOS 6 force device orientation to landscape
I gave an app with say 10 view controllers. I use navigation controller to load/unload them.
All but one are in portrait mode. Suppose the 7th VC is in landscape. I need it to be presented in ...
23
votes
4answers
9k views
What are Unwind segues for and how to use them?
iOS 6 and Xcode 4.5 has a new feature referred to as "Unwind Segue":
Unwind segues can allow transitioning to existing instances of scenes in a storyboard
In addition to this brief entry in ...
31
votes
3answers
10k views
Crash on presenting UIImagePickerController under iOS 6.0
My app only supports landscape orientations via the supportedInterfaceOrientation properties.
Using an iOS prior to iOS 6, my app can successfully load an instance of UIImagePickerController via ...
30
votes
9answers
7k views
is groupTableViewBackgroundColor deprecated on iOS 6?
I was just testing my app with iOS 6.0 and Xcode 4.5GM and I have set up a view like this:
[self.view setBackgroundColor:[UIColor groupTableViewBackgroundColor]];
So, the view has the same pattern ...
47
votes
6answers
19k views
Programmatically open Maps app in iOS 6
Previous to iOS 6, opening a URL like this would open the (Google) Maps app:
NSURL *url = [NSURL urlWithString:@"http://maps.google.com/?q=New+York"];
[[UIApplication sharedApplication] openURL:url];
...
42
votes
4answers
8k views
UIRefreshControl without UITableViewController
Just curious, as it doesn't immediately seem possible, but is there a sneaky way to leverage the new iOS 6 UIRefreshControl class without using a UITableViewController subclass?
I often use a ...
14
votes
1answer
6k views
How can I create a custom UIActivity and UIActivityProvider in iOS 6?
How can I create a custom UIActivity in iOS 6?
The reason I want this is to add a Review App button in one of my apps that takes the user directly to the review section on the App Store. How can I ...
13
votes
4answers
8k views
Facebook authorization fails on iOS6 when switching FB account on device
I'm using die Facebook SDK 3.1.1 to implement FB Connect in my iOS application. This works fine in the simple case with either the new FB integration (logged in on iOS) or falling back to the normal ...
20
votes
4answers
9k views
GameCenter authentication in landscape-only app throws UIApplicationInvalidInterfaceOrientation
Problem:
If user is not logged into GameCenter account - GameCenter authentication view is launched in portrait mode (in ios 5 there were a modal dialog) asking to log in. But if I disable Portrait ...
11
votes
5answers
14k views
iOS 6 shouldAutorotate: is NOT being called
I have been scouring the internet for a solution to this but am finding nothing. I am trying to make my iOS 5 app iOS 6 compatible. I cannot get the orientation stuff to work right. I am unable to ...
21
votes
4answers
7k views
contentView not indenting in iOS 6 UITableViewCell prototype cell
I am configuring a custom UITableViewCell using a prototype cell in a Storyboard. However, all the UILabels (and other UI elements) do not seem to be added to the cell's contentView, instead being ...
19
votes
2answers
13k views
Tutorial for SLComposeViewController sharing
What are the steps I need to follow to use iOS 6's new SLComposeViewController to post to Facebook, Twitter or Sina Weibo?
14
votes
2answers
6k views
How to switch to different Storyboard for iPhone 5?
Just as an app utilizes different storyboards for iPad and iPhone, I would like my app to use a different storyboard for the iPhone 5. Since there is no option in the Info.plist to select default ...
26
votes
5answers
5k views
UICollectionView flowLayout not wrapping cells correctly (iOS)
I have a UICollectionView with a FLowLayout. It will work as I expect most of the time, but every now and then one of the cells does not wrap properly. For example, the the cell that should be on in ...
12
votes
4answers
10k views
iOS 6 UITabBarController supported orientation with current UINavigation controller
I have an iPhone app I am updating to iOS 6 that is having rotation issues. I have a UITabBarController with 16 UINavigationCotrollers. Most of the subviews can work in portrait or landscape but some ...
21
votes
2answers
7k views
Facebook SDK 3.1 for iOS - runs on iOS6, but crashes on iOS 5.x
We've just updated our Facebook SDK for iOS to 3.1.
Facebook SDK 3.0.8 didn't run on iOS6, now that we have upgraded to 3.1, it runs on iOS 6, but crashes under iOS 5.x.
because of ...
14
votes
3answers
8k views
UITabBarController Rotation Issues in ios 6
Ack! I had my tabbar rotation issues resolved finally in iOS 5, but iOS 6 and xcode seem to have broken things... here is what I have:
Target App Summary includes: Supported Interface Orientations - ...
12
votes
4answers
13k views
iOS 6 Address Book not working?
My method of programmatically retrieving e-mail addresses from the Address Book no longer seems to work on iOS 6 devices. It worked in iOS 5 and oddly, still works in the iOS 6 Simulator. Is there a ...
9
votes
2answers
14k views
iOS 6 Rotation issue - No rotation from Presented Modal View Controller
I have a MainViewController which has a button which pushes a new view (InfoViewController), via flip horizontailly. like so:
controller.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
...
28
votes
2answers
5k views
Does anyone know what the new Exit icon is used for when editing storyboards using Xcode 4.5?
Right-clicking the Exit icon yields an empty window. Can't Ctrl-drag a connection to any IB elements or corresponding source files. Docs give no love. Doesn't appear in nib files, only storyboards. My ...
0
votes
2answers
382 views
How to clear/reset all CoreData in one-to-many realationship
I am using coreData, with one -to-many realtionship, I have a folder entity and a file entity. A folder can have many files and so on.
So, I have two ViewControllers, FolderViewController and ...
28
votes
3answers
12k views
Sharing with iOS 6.0 native Facebook integration: “Posted via my app name”?
I have just integrated facebook into my app via ios 6 but I have an issue when posting on my wall. It simply says "post via ios app". I want it to say "posted via the app name". I have made an app ...
25
votes
4answers
12k views
iOS6 UDID - What advantages does identifierForVendor have over identifierForAdvertising?
Apple is changing their privacy settings for iOS6 and deprecating device UUIDs (UDIDs). According to a WWDC presentation and the docs there are two replacements for the UDIDs, both in the UIDevice ...
7
votes
9answers
4k views
iOS 6 Xcode 4.5 unsupported architecture armv7s
When trying to archive an app for an Ad Hoc release, I am getting the following warning:
iPhone/iPod Touch: application executable contains unsupported architecture(s): armv7s (-19031)
I am really ...
15
votes
3answers
4k views
How do I set recipients for UIActivityViewController in iOS 6?
I'm using the new UIActivityViewController class in iOS6 to provide the user with various sharing options. You can pass an array of parameters to it such as text, links and images and it does the ...
9
votes
3answers
10k views
Autorotate a single UIViewController in iOS 6 with UITabBar
I have an app that work only in Portrait Mode, but there is a singleView that can display video, so i want that view work also in the landscape mode, but in iOS 6 i can't figure out how i can do it, ...
33
votes
0answers
13k views
Can I still use google maps in iOS 6 [closed]
As you may know apple yesterday announced iOS 6 and with it their own new maps.
I just ran my app on the new iOS and it uses as standard maps in MKMapView the new apple maps.
Which are probably ...
16
votes
3answers
2k views
UIStringDrawing methods don't seem to be thread safe in iOS 6
Using any UIStringDrawing methods on two threads simultaneously causes a crash. My understanding was that all UIStringDrawing methods were thread safe from iOS 4.0.
This code (that does nothing of ...
14
votes
9answers
12k views
iOS 6 streaming player com.apple.coremedia.networkbuffering bug
I'm having trouble on make my app(music and video stream player) running on iOS 6 simulator.
When I start a music ou video it crashes showing an error on this thread: ...
13
votes
2answers
4k views
What is the best way for supporting both screen resolution of iPhone4 and iPhone5 ? - Auto layout in only iOS6
Have anyone figured out how to support both screen resolution iPhone4 and iPhone 5 ?
In iOS6 we have support of Autolayout. Can that be used for iPhone4-iPhone5 screen i.e. 320x480 and 320x568.
If ...
11
votes
1answer
3k views
Is it possible to reset the privacy settings in iOS 6?
My app needs access to the iOS calendar. Every time I install it on the device it remembers the old privacy settings and does not show the alert view to ask me if I grant access. Is there a way to ...
3
votes
1answer
3k views
How to detect iOS 6 and all minor versions by user agent? [duplicate]
Possible Duplicate:
What is the iOS 6 user agent string?
Has anybode ideas to do this with a simple regex or something? Would be nice to distinct between iphone and ipad as well.
Any help ...
9
votes
4answers
2k views
Unit Test target doesn't run on XCode 4.5
I'm on the latest beta version of Xcode (Xcode 4.5 with iOS 6.0). I've got an xcode project for an iphone app and I want to add a Unit Test target on it. I've followed carefully the instructions given ...
0
votes
3answers
542 views
Orientation issue in ios 6
I am working in universal app which works fine till ios 5 but in ios 6 there is orientation problem. My app is only in portrait mode. The problem is when my ipad is in landscape mode and than if i ...

