36 lines
755 B
Objective-C
36 lines
755 B
Objective-C
//
|
|
// FriendsViewController.m
|
|
// SlideMenu
|
|
//
|
|
// Created by Aryan Ghassemi on 12/31/13.
|
|
// Copyright (c) 2013 Aryan Ghassemi. All rights reserved.
|
|
//
|
|
|
|
#import "FriendsViewController.h"
|
|
|
|
@implementation FriendsViewController
|
|
|
|
- (void)viewDidLoad
|
|
{
|
|
[super viewDidLoad];
|
|
}
|
|
|
|
- (BOOL)slideNavigationControllerShouldDisplayLeftMenu
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
|
|
{
|
|
return 20;
|
|
}
|
|
|
|
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
|
|
{
|
|
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"friendCell"];
|
|
cell.textLabel.text = [NSString stringWithFormat:@"Friend %ld", (long)indexPath.row];
|
|
return cell;
|
|
}
|
|
|
|
@end
|