| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // WeatherLocationPopupView.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 CommonCode;
- @class CustomImageView;
- @class CustomCheckBox;
- @class CustomRadioButton;
- @interface WeatherLocationPopupView : CustomAlertView
- @property (weak, nonatomic) CommonCode *weatherLocation;
- @property (weak, nonatomic) NSArray<CommonCode> *locations;
- @property (strong, nonatomic) NSString *typeCode;
- @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
- - (id)initFromNib;
- @end
- @interface WeatherLocationPopupTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblCity;
- @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoSelect;
- @end
|