I have an iOS8 application, and after starting in Xcode 7.0 (7A218) I got a black screen when I first started. But before, I saw Launch Screen. Also I see that in the console:
Sep 19 09:36:56 GestureKeyboard[2640] <Error>: CGContextSaveGState: invalid context 0x0. If you want to see the backtrace, please set CG_CONTEXT_SHOW_BACKTRACE environmental variable.
ViewController
import UIKit
class ViewController: UIViewController {
@IBOutlet var imageView : UIImageView!
@IBOutlet var label : UILabel!
}


source
share