mirror of
https://github.com/samsonjs/5by5Browser.git
synced 2026-03-25 09:05:50 +00:00
17 lines
359 B
Objective-C
17 lines
359 B
Objective-C
//
|
|
// UIAlertView+marshmallows.h
|
|
// DatingX
|
|
//
|
|
// Created by Sami Samhuri on 11-08-24.
|
|
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
typedef void (^UIAlertViewCallback)(BOOL ok);
|
|
|
|
@interface UIAlertView (UIAlertView_marshmallows)
|
|
|
|
+ (void) showAlertWithTitle: (NSString *)title message: (NSString *)message;
|
|
|
|
@end
|