SCLAlertViewResponder.h 476 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // SCLAlertViewResponder.h
  3. // SCLAlertView
  4. //
  5. // Created by Diogo Autilio on 9/26/14.
  6. // Copyright (c) 2014-2017 AnyKey Entertainment. All rights reserved.
  7. //
  8. #if defined(__has_feature) && __has_feature(modules)
  9. @import Foundation;
  10. #else
  11. #import <Foundation/Foundation.h>
  12. #endif
  13. #import "SCLAlertView.h"
  14. @interface SCLAlertViewResponder : NSObject
  15. /** TODO
  16. *
  17. * TODO
  18. */
  19. - (instancetype)init:(SCLAlertView *)alertview;
  20. /** TODO
  21. *
  22. * TODO
  23. */
  24. - (void)close;
  25. @end