diff --git a/uYouPlus.h b/uYouPlus.h index b8ccec6..57a665b 100644 --- a/uYouPlus.h +++ b/uYouPlus.h @@ -252,3 +252,19 @@ @interface settingsReorderTable : UIViewController @property(nonatomic, strong) UITableView *tableView; @end + +// Snack bar +@interface YTHUDMessage : NSObject ++ (id)messageWithText:(id)text; +- (void)setAction:(id)action; +@end + +@interface GOOHUDMessageAction : NSObject +- (void)setTitle:(NSString *)title; +- (void)setHandler:(void (^)(id))handler; +@end + +@interface GOOHUDManagerInternal : NSObject +- (void)showMessageMainThread:(id)message; ++ (id)sharedInstance; +@end