Skip to content

Instantly share code, notes, and snippets.

@Abizern
Created March 8, 2010 23:21
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save Abizern/325926 to your computer and use it in GitHub Desktop.
Save Abizern/325926 to your computer and use it in GitHub Desktop.
Common Macros for Xcode projects
// Useful Macros.
// The best place to import this is in your project's pch file.
// See http://www.cimgf.com/2010/05/02/my-current-prefix-pch-file/ for details.
// Most current version at https://gist.github.com/325926 along with usage notes.
#ifndef jcscommonmacros
#define jcscommonmacros_1_0 10000
#define jcscommonmacros jcscommonmacros_1_0
#endif
#ifdef DEBUG
#define DLog(...) NSLog(@"%s %@", __PRETTY_FUNCTION__, [NSString stringWithFormat:__VA_ARGS__])
#define ALog(...) [[NSAssertionHandler currentHandler] handleFailureInFunction:[NSString stringWithCString:__PRETTY_FUNCTION__ encoding:NSUTF8StringEncoding] file:[NSString stringWithCString:__FILE__ encoding:NSUTF8StringEncoding] lineNumber:__LINE__ description:__VA_ARGS__]
#else
#define DLog(...) do { } while (0)
#ifndef NS_BLOCK_ASSERTIONS
#define NS_BLOCK_ASSERTIONS
#endif
#define ALog(...) NSLog(@"%s %@", __PRETTY_FUNCTION__, [NSString stringWithFormat:__VA_ARGS__])
#endif
#define ZAssert(condition, ...) do { if (!(condition)) { ALog(__VA_ARGS__); }} while(0)
/**
A convenience function that provides a general test for emptiness
Courtesy of Wil Shipley http://www.wilshipley.com/blog/2005/10/pimp-my-code-interlude-free-code.html
@param thing An object to test for emptiness
@return YES if the object is empty, NO otherwise
*/
static inline BOOL isEmpty(id thing) {
return thing == nil
|| ([thing respondsToSelector:@selector(length)]
&& [(NSData *)thing length] == 0)
|| ([thing respondsToSelector:@selector(count)]
&& [(NSArray *)thing count] == 0);
}
/**
A convenience function for logging BOOL variables
@param value the variable for logging
@return YES or NO
*/
static inline NSString *boolString(BOOL value) {
return value ? @"YES" : @"NO";
}
@Abizern
Copy link
Author

Abizern commented May 6, 2010

Deprecated.

I don't use this anymore as it's not valid for Swift


These are standard additions to my .pch file for Xcode projects. Most of my open source code requires them.

import this header into your project's pch file after all the imports.

See the Cocoa is my Girlfriend post on using the macros:

Also, Wil Shipley brings us the isEmpty function.

Basically

  • DLog only outputs NSLog in Debug.
  • ALog raises assertions in Debug and NSLogs in Release
  • ZAssert makes for simple assertions. Asserts in Debug, NSLogs in Release. This behaves very much like the STAssertTrue macro used in unit-testing bundles.

Don't even need to define DEBUG as Xcode 4 does that for us.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment