linphone-ios/NinePatch/TUNinePatchCachingCategories.h
Yann Diorcet b634a50283 Add NinePath lib
Continue chat stuff
Fix viewWillAppear without viewDidLoad called with UICompositeController
2012-07-06 17:43:46 +02:00

28 lines
504 B
Objective-C
Executable file

//
// TUNinePatchCachingCategories.h
// NinePatch
//
// Copyright 2010 Tortuga 22, Inc. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <CoreGraphics/CoreGraphics.h>
@interface NSString (NinePatchCaching)
+(NSString *)ninePatchKeyStringForSize:(CGSize)size;
@end
@interface NSDictionary (NinePatchCaching)
-(id)objectForSize:(CGSize)size;
@end
@interface NSMutableDictionary (NinePatchCaching)
-(void)setObject:(id)object forSize:(CGSize)size;
@end