Top "Xcode6" questions

Xcode 6 is Apple's integrated development environment (IDE).

How to get device console in Xcode6?

I am exploring iOS8 beta. I couldn't find the device console logs in "Window->Devices->MyiPad". Can someone …

ios8 xcode6
how to capture camera with UIImagePickerController in swift?

I'm trying use UIImagePickerController in swift but isn't work... my ViewController: class ViewController: UIViewController { @IBOutlet var imag : UIView = nil @IBAction …

uiimagepickercontroller swift ios8 xcode6
Remove SeparatorInset on iOS 8 UITableView for Xcode 6 iPhone Simulator

I found a weird white space on UITableView for iPhone 6 Simulator (iOS 8) on Xcode 6 GM. I have tried to set …

ios iphone uitableview ios8 xcode6
Xcode 6 process launch failed: timed out trying to launch app

I can't debug my app because when I run it, Xcode gives me the error: Process launch failed: timed out …

ios xcode xcode6
How can Xcode 6 adaptive UIs be backwards-compatible with iOS 7 and iOS 6?

I just watched the WWDC video #216, "Building Adaptive UI with UIKit." At about 45:10 Tony Ricciardi talks about changes to IB …

xcode6 adaptive-ui
error: module file's minimum deployment target is ios8.3 v8.3

All attempts to import a dynamic framework in an Xcode playground yield the following error: error: module file's minimum deployment …

ios xcode swift xcode6 swift-playground
How to debug iOS 8 extensions with NSLog?

- (void)viewDidLoad { NSLog(@"%s", __func__); // ... } in viewDidLoad of an iOS 8 extension. the NSLog outputs nothing in Xcode. NSLog works …

ios ios8 xcode6 ios-app-extension
"Your binary is not optimized for iPhone 5" (ITMS-90096) when submitting

this is my first ios app and when i try to submit it to the app store it gives me …

ios iphone xcode6
Xcode6:Embedded binary is not signed with the same certificate as the parent app

After I add Today App Extension Target,I become impossible to compile project. below is error: error: Embedded binary is …

ios xcode ios8 xcode6 ios-app-extension
Swift: Multiple intervals in single switch-case using tuple

Have a code like: switch (indexPath.section, indexPath.row) { case (0, 1...5): println("in range") default: println("not at all") } The question …

ios swift switch-statement tuples xcode6