Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. //
  2. // Banner.h
  3. //
  4. // Created by Mohammad Julfikar on 08/09/2019.
  5. // Copyright © 2019 Facebook. All rights reserved.
  6. //
  7.  
  8. #import <UIKit/UIKit.h>
  9.  
  10. NS_ASSUME_NONNULL_BEGIN
  11.  
  12. @interface Banner : UIView{
  13. void (^_completionHandler)(int done);
  14. }
  15. - (void) show:(NSString*)messageTxt type:(NSString*)messageType onComplete:(void(^)(int)) handler;
  16. @end
  17.  
  18. NS_ASSUME_NONNULL_END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement