Blame view
ios/CoreBlue.framework/PrivateHeaders/UIToast.h
454 Bytes
0605edc71
![]() |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
// // UIToast.h // Blue // // Created by wangAlvin on 16/8/23. // Copyright © 2016年 wangAlvin. All rights reserved. // #ifndef UIToast_h #define UIToast_h #import <UIKit/UIKit.h> #endif /* UIToast_h */ #define TOAST_SHOW_LONG 0 #define TOAST_SHOW_SHORT 1 @interface UIToast : UILabel -(id)initWithText:(NSString*)text; -(void)dismiss; -(void)show:(NSInteger) shortOrLong; +(void)show:(NSString*) text howLong:(NSInteger) showtime; @end |