MyGroupViewController.h
507 Bytes
//
// MyGroupViewController.h
// LifeLog
//
// Created by nvtu on 8/20/17.
// Copyright © 2017 PhongNV. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "GroupDetailViewController.h"
#import "AutoTransButton.h"
#import "Entities.h"
@interface MyGroupViewController : GroupDetailViewController {
NSMutableArray *_curListGrp;
}
@property (weak, nonatomic) IBOutlet UITableView *tableGrp;
@property (weak, nonatomic) IBOutlet UIButton *btShowGrp;
- (IBAction)clickShowGrp:(id)sender;
@end