| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // DaylightPopupView.h
- // kneet2
- //
- // Created by Jason Lee on 11/24/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- @import UIKit;
- #import "CustomAlertView.h"
- #import "JDViewController.h"
- @class CustomCheckBox;
- @class CustomTextField;
- @interface DaylightPopupView : CustomAlertView
- //properties
- @property (weak, nonatomic) ItemModel *daylightTrigger;
- @property (weak, nonatomic) NSMutableArray<ItemModel> *refConditions;
- @property (strong, nonatomic) IBOutletCollection(CustomCheckBox) NSArray *chkDays;
- @property (weak, nonatomic) IBOutlet CustomButton *btnSunRise;
- @property (weak, nonatomic) IBOutlet CustomButton *btnSunSet;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblCity;
- @property (weak, nonatomic) IBOutlet CustomButton *btnSelect; // 지역 선택 버튼
- @property (weak, nonatomic) IBOutlet CustomTextField *txtLocation; // 지역선택박스
- //methods
- - (id)initFromNib;
- - (IBAction)btnSunRiseTouched:(id)sender;
- - (IBAction)btnSunSetTouched:(id)sender;
- @end
|