NewGroupPopupView.h 462 B

123456789101112131415161718192021222324
  1. //
  2. // NewGroupPopupView.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 4/28/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. @class CustomTextField2;
  11. @class GroupsModel;
  12. @interface NewGroupPopupView : CustomAlertView
  13. @property (assign, nonatomic) BOOL isModifyMode;
  14. @property (copy, nonatomic) GroupsModel *group;
  15. @property (weak, nonatomic) IBOutlet CustomTextField2 *txtGroupName;
  16. - (id)initFromNib;
  17. @end