Top "Nslog" questions

Logs an error message to the Apple System Log facility.

NSLog, NSError, bad access

I was doing a rather ordinary addPersistentStore to an NSPersistentStoreCoordinator, and it generated an &error code. So I went …

objective-c cocoa nslog nserror
'NSLog' is unavailable: Variadic function is unavailable in swift

I'm new to swift. when I'm learning just basics I got this error at NSLog Here is my code : import …

ios swift nslog
How to filter console output in Xcode

In my iOS project, I use one 3rd-party library, which is is incredible spamming into the console output. Can I …

xcode console nslog
How to disable NSLog all over the app?

I want to disable NSLog() across all instances in an app. I found some code that does that: #ifndef DEBUG #…

ios objective-c xcode c-preprocessor nslog
Viewing the console log in iOS7

Prior to iOS7, if I wanted to view the output log of an app running on an iOS device, I …

debugging logging console ios7 nslog
NSLog() to both console and file

I would like to redirect NSog() to file, but still to see the output in console. I am aware that …

objective-c nslog
how to create a breakpoint's log message action in xcode?

Been watching a WWDC video today about new features in xCode 4. They have mentioned that it a good idea to …

xcode action breakpoints nslog
Calling NSLog from C++: "Format string is not a string literal (potentially insecure)"

When I call NSLog from C++, Xcode complains that the format string passed to NSLog is not a literal string. …

c++ objective-c nslog
question concerning NSLog output %i, %d

I have question concerning a function I created. I would like to show the timeinterval in my console output. -(…

objective-c nslog
How to direct printf output to the same target as NSLog?

How can i make the output of printf appear in the Xcode Organizer console view? While debugging on a connected …

ios xcode logging printf nslog