5by5Browser/Marshmallows/UIAlertViewDelegate.h
2012-01-01 20:59:30 -08:00

20 lines
453 B
Objective-C

//
// UIAlertViewDelegate.h
// Marshmallows
//
// Created by Sami Samhuri on 11-09-05.
// Copyright 2011 Guru Logic. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "UIAlertView+marshmallows.h"
@interface UIAlertViewDelegate : NSObject <UIAlertViewDelegate>
{
UIAlertViewCallback _callback;
}
+ (id) alertViewDelegateWithCallback: (UIAlertViewCallback)callback;
- (id) initWithCallback: (UIAlertViewCallback)callback;
@end