Blogs1 - 5 of 5 recent posts for tag:nslog
Sponsored
Blogs talk about the election!

See what bloggers are saying about President elect Barack Obama.

IceRocket.com
05
Nov
2008
iPhones on TV

16 days ago by admin

What is it with actors not holding an iPhone properly on TV? See the original post: iPhones on TV

All the latest Gadget ... - gadgetawards.com

31
Oct
2008
So You’ve Got an Orange Crush

22 days ago by The Plaid Cow

You can follow me wherever I post comments. At least here and on NSLog();. Maybe they will add more later. or maybe I will start commenting in more places.

Moo! The Musings of a ... - moo.plaidcow.net

28
Sep
2008
CFShow is NSLog for Core Foundation Types

55 days ago by Vincent Gable

CFShow(coreFoundationThingy) will print out a description of coreFoundationThingy to the console. Output looks something like: {value = w:1186.000000 h:687.000000 type = kAXValueCGSizeType} If NSLog() is printing something out as an NSCFType, try CFShow().

Vincent Gable - vgable.com/blog · Rank: 175,696 · 2 references

17
Sep
2008
-description, Little-Known Hero of Debugging

66 days ago by Vincent Gable

Or: How to Make NSLog() Useful With Your Objects Say you have an archaically named NSArray that you want to inspect — it’s easy to do, since NSLog(@"The bestiary is %@", bestiary); prints out the array’s contents 2008-09-16 19:46:06.445 Tester[2678:10b] The bestiary is ( Cheetah, Pumpa, Jaguar, Pant ...

Vincent Gable - vgable.com/blog · Rank: 175,696 · 2 references

06
Aug
2008
Simplified Logging

108 days ago by Vincent Gable

I have noticed a pattern in my Cocoa code, which I have been able to simplify. I often print out the value of a variable for debugging. 99 times out of 100, the code looks like this: NSLog(@"actionURL = %@", actionURL);, where actionURL is some variable. But using the macros, I can say LOG_ID(action ...

Vincent Gable - vgable.com/blog · Rank: 175,696 · 2 references