// // NewGroupPopupView.h // kneet // // Created by Jason Lee on 4/28/15. // Copyright (c) 2015 ntels. All rights reserved. // @import UIKit; #import "CustomAlertView.h" @class CustomTextField2; @class GroupsModel; @interface NewGroupPopupView : CustomAlertView @property (assign, nonatomic) BOOL isModifyMode; @property (copy, nonatomic) GroupsModel *group; @property (weak, nonatomic) IBOutlet CustomTextField2 *txtGroupName; - (id)initFromNib; @end