36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Objective-C
		
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Objective-C
		
	
	
	
| #ifndef OBJC_LITERAL_SUPPORT_H
 | |
| #define OBJC_LITERAL_SUPPORT_H
 | |
| 
 | |
| typedef unsigned char BOOL;
 | |
| 
 | |
| @interface NSNumber @end
 | |
| 
 | |
| @interface NSNumber (NSNumberCreation)
 | |
| + (NSNumber *)numberWithChar:(char)value;
 | |
| + (NSNumber *)numberWithUnsignedChar:(unsigned char)value;
 | |
| + (NSNumber *)numberWithShort:(short)value;
 | |
| + (NSNumber *)numberWithUnsignedShort:(unsigned short)value;
 | |
| + (NSNumber *)numberWithInt:(int)value;
 | |
| + (NSNumber *)numberWithUnsignedInt:(unsigned int)value;
 | |
| + (NSNumber *)numberWithLong:(long)value;
 | |
| + (NSNumber *)numberWithUnsignedLong:(unsigned long)value;
 | |
| + (NSNumber *)numberWithLongLong:(long long)value;
 | |
| + (NSNumber *)numberWithUnsignedLongLong:(unsigned long long)value;
 | |
| + (NSNumber *)numberWithFloat:(float)value;
 | |
| + (NSNumber *)numberWithDouble:(double)value;
 | |
| + (NSNumber *)numberWithBool:(BOOL)value;
 | |
| @end
 | |
| 
 | |
| @interface NSArray
 | |
| @end
 | |
| 
 | |
| @interface NSArray (NSArrayCreation)
 | |
| + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt;
 | |
| @end
 | |
| 
 | |
| @interface NSDictionary
 | |
| + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt;
 | |
| @end
 | |
| 
 | |
| #endif // OBJC_LITERAL_SUPPORT_H
 |