NoticeViewController.h 646 B

123456789101112131415161718192021222324252627
  1. //
  2. // NoticeViewController.h
  3. // XenonSDK
  4. //
  5. // Created by SAGESSE on 2019/5/30.
  6. // Copyright © 2019 SAGESSE. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. @interface NoticeViewController : BaseViewController
  10. @property (nonatomic, copy) NSString* title;
  11. @property (nonatomic, strong) id contents;
  12. @property (nonatomic, strong) IBOutlet UIButton* cancelButton;
  13. @property (nonatomic, strong) IBOutlet UIButton* confirmButton;
  14. @property (nonatomic, strong) IBOutlet UIView* containerView;
  15. @property (nonatomic, strong) IBOutlet UIView* spaceLine;
  16. - (void)addActionWithName:(NSString*)name handler:(void(^)(void))handler;
  17. @end