23 lines
754 B
Objective-C
23 lines
754 B
Objective-C
//
|
|
// LeftViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/9/27.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "ICSDrawerController.h"
|
|
|
|
#import "UMCommunityUI.h"
|
|
@interface LeftViewController : UIViewController<ICSDrawerControllerPresenting,ICSDrawerControllerChild,UITableViewDelegate,UITableViewDataSource>
|
|
@property(nonatomic,strong)UIScrollView*scollView;
|
|
@property(nonatomic, weak) ICSDrawerController *drawer;
|
|
@property(nonatomic,strong)UITableView *tableView;
|
|
@property(nonatomic,strong)UIImageView*backView;
|
|
@property(nonatomic,strong)NSArray*tileArr;
|
|
@property(nonatomic,strong)NSArray*headimgeArr;
|
|
@property (nonatomic, copy) void (^updateCompletion)(id responseObject, NSError *error) ;
|
|
|
|
@end
|