mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
107 lines
2.7 KiB
Objective-C
107 lines
2.7 KiB
Objective-C
//
|
|
// FeedsMenuViewController.m
|
|
// NewsBlur
|
|
//
|
|
// Created by Roy Yang on 6/19/12.
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
#import "FeedsMenuViewController.h"
|
|
#import "NewsBlurAppDelegate.h"
|
|
#import "ASIFormDataRequest.h"
|
|
#import "MBProgressHUD.h"
|
|
|
|
@implementation FeedsMenuViewController
|
|
|
|
@synthesize appDelegate;
|
|
@synthesize menuOptions;
|
|
@synthesize toolbar;
|
|
@synthesize menuTableView;
|
|
|
|
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
|
|
{
|
|
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
|
|
if (self) {
|
|
// Custom initialization
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)viewDidLoad
|
|
{
|
|
[super viewDidLoad];
|
|
// Do any additional setup after loading the view from its nib.
|
|
|
|
self.menuOptions = [[NSArray alloc]
|
|
initWithObjects:@"Account", @"Preferences", @"Logout", nil];
|
|
|
|
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
|
|
self.toolbar.hidden = YES;
|
|
self.menuTableView.frame = CGRectMake(0, 0, menuTableView.frame.size.width, menuTableView.frame.size.height + 44);
|
|
}
|
|
|
|
self.toolbar.tintColor = [UIColor colorWithRed:0.16f green:0.36f blue:0.46 alpha:0.9];
|
|
}
|
|
|
|
- (void)viewDidUnload
|
|
{
|
|
toolbar = nil;
|
|
menuTableView = nil;
|
|
|
|
[super viewDidUnload];
|
|
// Release any retained subviews of the main view.
|
|
// e.g. self.myOutlet = nil;
|
|
self.menuOptions = nil;
|
|
}
|
|
|
|
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
|
|
- (IBAction)tapCancelButton:(UIBarButtonItem *)sender {
|
|
[appDelegate hideFeedsMenu];
|
|
}
|
|
|
|
- (void)finishedWithError:(ASIHTTPRequest *)request {
|
|
[MBProgressHUD hideHUDForView:self.view animated:YES];
|
|
NSLog(@"Error %@", [request error]);
|
|
}
|
|
|
|
#pragma mark -
|
|
#pragma mark - Table view data source
|
|
|
|
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
|
|
{
|
|
return [self.menuOptions count];
|
|
}
|
|
|
|
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
|
|
{
|
|
static NSString *CellIndentifier = @"Cell";
|
|
|
|
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIndentifier];
|
|
|
|
if (cell == nil) {
|
|
cell = [[UITableViewCell alloc]
|
|
initWithStyle:UITableViewCellStyleDefault
|
|
reuseIdentifier:CellIndentifier];
|
|
}
|
|
|
|
cell.textLabel.text = [self.menuOptions objectAtIndex:[indexPath row]];
|
|
|
|
return cell;
|
|
}
|
|
|
|
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
|
|
{
|
|
if (indexPath.row == 2) {
|
|
[appDelegate confirmLogout];
|
|
}
|
|
|
|
[tableView deselectRowAtIndexPath:indexPath animated:YES];
|
|
[appDelegate hideFeedsMenu];
|
|
}
|
|
|
|
@end
|