VoiceMac/Classes/VoiceMob/MGMVMAddons.h

22 lines
458 B
C
Raw Normal View History

2010-09-25 07:34:32 -05:00
//
// MGMVMAddons.h
// VoiceMob
//
// Created by Mr. Gecko on 9/24/10.
// Copyright (c) 2011 Mr. Gecko's Media (James Coleman). http://mrgeckosmedia.com/
2010-09-25 07:34:32 -05:00
//
#import <UIKit/UIKit.h>
@interface UIDevice (MGMVMAddons)
- (BOOL)isPad;
- (NSString *)appendDeviceSuffixToString:(NSString *)theString;
@end
@interface UIScreen (MGMVMAddons)
- (BOOL)isRetina;
@end
@interface UIColor (MGMVMAddons)
- (UIColor *)colorWithDifference:(CGFloat)theDifference;
2010-09-25 07:34:32 -05:00
@end