// // Popup.h // Created by EonaCat // Copyright 2013 EonaCat. All rights reserved. // #import @interface Popup : NSObject { NSTimer *_notificationTimer; UILabel *_target; UIColor *_targetOldBackgroundColor; UIColor *_targetOldTextColor; NSString *_targetText; UIAlertView *_alert; } -(void)showAlert:(NSString*)title message:(NSString*)message delegate:(id)delegate cancelButtonText:(NSString*)cancelButtonText otherButtonText:(NSString*)otherButtonText tag:(NSInteger)tag; -(void)showDebugNotification:(NSString*)message textColor:(UIColor*)textColor backgroundColor:(UIColor*)backgroundColor target:(UILabel*)target; -(void)dismiss; + (id)getInstance; @end