DaysPopupView.h 473 B

1234567891011121314151617181920212223242526
  1. //
  2. // DaysPopupView.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 5/12/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. @class CustomCheckBox;
  11. @class ItemModel;
  12. @interface DaysPopupView : CustomAlertView
  13. @property (strong, nonatomic) ItemModel *condition;
  14. @property (strong, nonatomic) NSString *daysOfWeek;
  15. @property (strong, nonatomic) IBOutletCollection(CustomCheckBox) NSArray *chkDays;
  16. - (id)initFromNib;
  17. @end