public
Description: XBMC iPhone Remote
Homepage: remote.collect3.com.au
Clone URL: git://github.com/djfumberger/xbmc-remote.git
xbmc-remote / NSObjectExtension.h
100644 19 lines (16 sloc) 0.38 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// NSObjectExtension.h
// xbmcremote
//
// Created by David Fumberger on 4/11/08.
// Copyright 2008 collect3. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
// This category enhances NSObject by providing
// methods to get the className on the iPhone.
@interface NSObject (Extension)
#if (TARGET_OS_IPHONE)
- (NSString *)className;
+ (NSString *)className;
#endif
@end