SNSViewController.h
538 Bytes
//
// SNSViewController.h
// LifeLog
//
// Created by Nguyen Van Phong on 7/25/17.
// Copyright © 2017 PhongNV. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface SNSViewController : UIViewController<UITableViewDelegate, UITableViewDataSource> {
BOOL _firstTime;
BOOL _isLoading;
BOOL _isEndOfResult;
int _curPage;
NSMutableArray * _curTweetList;
}
@property (weak, nonatomic) IBOutlet UITableView *tableRecent;
@end