Als «nslog» getaggte Fragen

93
NSLog mit CGPoint-Daten

Ich habe einen CGPoint namens Punkt, dem eine Berührung zugewiesen wird: UITouch *touch = [touches anyObject]; CGPoint point = [touch locationInView:self]; Ich möchte den x-Koordinatenwert in mein Konsolenprotokoll aufnehmen: NSLog(@"x: %s", point.x); Wenn ich dies verwende, lautet die...

88
iOS 10 druckt keine NSLogs

NSLogAuf Xcode 8.0 Beta (8S128d) wird nichts gedruckt. printfist unverändert Hier ist mein Code: NSLog(@"hello from NSLog"); printf("hello from printf"); Hier ist die Ausgabe auf iOS 9 Simulator: 2016-06-17 09:49:10.887 calmapp-dev[28517:567025] hello from NSLog hello from printf Hier ist die...