62 lines
1.6 KiB
Objective-C
62 lines
1.6 KiB
Objective-C
//
|
|
// BrowserTableViewController.m
|
|
// emulator
|
|
//
|
|
// Created by Karen Tsai on 2014/3/5.
|
|
// Copyright (c) 2014 Karen Tsai (angelXwind). All rights reserved.
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
#import "BrowserTableViewController.h"
|
|
#import "SWRevealViewController.h"
|
|
#import "EmulatorViewController.h"
|
|
|
|
@interface BrowserTableViewController ()
|
|
|
|
@end
|
|
|
|
@implementation BrowserTableViewController
|
|
|
|
- (id)initWithStyle:(UITableViewStyle)style
|
|
{
|
|
self = [super initWithStyle:style];
|
|
if (self) {
|
|
// Custom initialization
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)viewDidLoad
|
|
{
|
|
[super viewDidLoad];
|
|
self.title = @"Browser";
|
|
|
|
// versionLabel.text = [NSBundle mainBundle].infoDictionary[@"GitVersionString"];
|
|
|
|
// Set the side bar button action. When it's tapped, it'll show up the sidebar.
|
|
_sidebarButton.target = self.revealViewController;
|
|
_sidebarButton.action = @selector(revealToggle:);
|
|
|
|
// Set the gesture
|
|
[self.view addGestureRecognizer:self.revealViewController.panGestureRecognizer];
|
|
// Do any additional setup after loading the view.
|
|
|
|
// Uncomment the following line to preserve selection between presentations.
|
|
// self.clearsSelectionOnViewWillAppear = NO;
|
|
|
|
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
|
|
// self.navigationItem.rightBarButtonItem = self.editButtonItem;
|
|
}
|
|
|
|
- (void)didReceiveMemoryWarning
|
|
{
|
|
[super didReceiveMemoryWarning];
|
|
// Dispose of any resources that can be recreated.
|
|
}
|
|
|
|
#pragma mark - Table view data source
|
|
|
|
// TODO: actual loading of games... and you know, the rest of the view controller.
|
|
|
|
@end
|