123456789101112131415161718192021222324252627 |
- //
- // NoticeViewController.h
- // XenonSDK
- //
- // Created by SAGESSE on 2019/5/30.
- // Copyright © 2019 SAGESSE. All rights reserved.
- //
- #import "BaseViewController.h"
- @interface NoticeViewController : BaseViewController
- @property (nonatomic, copy) NSString* title;
- @property (nonatomic, strong) id contents;
- @property (nonatomic, strong) IBOutlet UIButton* cancelButton;
- @property (nonatomic, strong) IBOutlet UIButton* confirmButton;
- @property (nonatomic, strong) IBOutlet UIView* containerView;
- @property (nonatomic, strong) IBOutlet UIView* spaceLine;
- - (void)addActionWithName:(NSString*)name handler:(void(^)(void))handler;
- @end
|