// // DaysPopupView.h // kneet // // Created by Jason Lee on 5/12/15. // Copyright (c) 2015 ntels. All rights reserved. // @import UIKit; #import "CustomAlertView.h" @class CustomCheckBox; @class ItemModel; @interface DaysPopupView : CustomAlertView @property (strong, nonatomic) ItemModel *condition; @property (strong, nonatomic) NSString *daysOfWeek; @property (strong, nonatomic) IBOutletCollection(CustomCheckBox) NSArray *chkDays; - (id)initFromNib; @end