123456789101112131415161718192021222324252627 |
- #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
|