WeatherLocationPopupView.h 820 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // WeatherLocationPopupView.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 11/24/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. #import "JDViewController.h"
  11. @class CommonCode;
  12. @class CustomImageView;
  13. @class CustomCheckBox;
  14. @class CustomRadioButton;
  15. @interface WeatherLocationPopupView : CustomAlertView
  16. @property (weak, nonatomic) CommonCode *weatherLocation;
  17. @property (weak, nonatomic) NSArray<CommonCode> *locations;
  18. @property (strong, nonatomic) NSString *typeCode;
  19. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  20. - (id)initFromNib;
  21. @end
  22. @interface WeatherLocationPopupTableViewCell : KNTableViewCell
  23. @property (weak, nonatomic) IBOutlet CustomLabel *lblCity;
  24. @property (weak, nonatomic) IBOutlet CustomRadioButton *rdoSelect;
  25. @end