基本信息
源码名称:ios点菜系统源码下载
源码大小:2.53M
文件格式:.zip
开发语言:C/C++
更新时间:2014-05-16
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
// // MenuViewController.m // SUSHIDO // // Created by WANG Mengke on 10-6-29. // Copyright 2010 __MyCompanyName__. All rights reserved. // #import "MenuViewController.h" #import "FileManagerController.h" #import "TableCellBGView.h" #import "MenuPagingViewController.h" #import "SUSHIDOAppDelegate.h" @implementation MenuViewController #pragma mark - #pragma mark Initialization - (id)initWithStyle:(UITableViewStyle)style{ self = [super initWithStyle:style]; if (self) { self.tabBarItem.title = @"Menu"; UIImage *image = [[UIImage alloc] initWithContentsOfFile:[[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"LOGO.png"]]; UIImageView *logoImageView = [[UIImageView alloc] initWithImage:image]; [image release]; self.navigationItem.titleView = logoImageView; [logoImageView release]; UIImage *imageTab = [[UIImage alloc] initWithContentsOfFile:[[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"TAB_ICON_MENU.png"]]; self.tabBarItem.image = imageTab; [imageTab release]; self.navigationItem.title=@"SUSHIDO"; //self.navigationController.navigationBarHidden = NO; mMenus = [[NSArray alloc] initWithArray:[FileManagerController allContentsInPath:[[FileManagerController documentPath] stringByAppendingPathComponent:@"menu"]]]; UIImage *titleImage = [[UIImage alloc] initWithContentsOfFile:[[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"MenuTitle.png"]]; UIImageView *titleView = [[UIImageView alloc] initWithImage:titleImage]; [titleImage release]; [titleView setFrame:CGRectMake(0, 0, titleImage.size.width, titleImage.size.height)]; [self.tableView setTableHeaderView:titleView]; [titleView release]; [self.tableView setSeparatorColor:[UIColor whiteColor]]; [self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleSingleLine]; } return self; } - (void)dealloc { [mMenus release]; [super dealloc]; } /* - (id)initWithStyle:(UITableViewStyle)style { // Override initWithStyle: if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad. if ((self = [super initWithStyle:style])) { } return self; } */ #pragma mark - #pragma mark View lifecycle /* - (void)viewDidLoad { [super viewDidLoad]; // Uncomment the following line to display an Edit button in the navigation bar for this view controller. // self.navigationItem.rightBarButtonItem = self.editButtonItem; } */ - (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; [self.view setBackgroundColor:[UIColor clearColor]]; [(SUSHIDOAppDelegate *)[[UIApplication sharedApplication] delegate] resetBGView]; } /* - (void)viewDidAppear:(BOOL)animated { [super viewDidAppear:animated]; } */ /* - (void)viewWillDisappear:(BOOL)animated { [super viewWillDisappear:animated]; } */ /* - (void)viewDidDisappear:(BOOL)animated { [super viewDidDisappear:animated]; } */ /* // Override to allow orientations other than the default portrait orientation. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { // Return YES for supported orientations return (interfaceOrientation == UIInterfaceOrientationPortrait); } */ #pragma mark - #pragma mark Table view data source - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { // Return the number of sections. return 1; } - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { // Return the number of rows in the section. return [mMenus count]; } - (CellStyle)checkCellStyleWith:(NSArray *)_datasource Index:(NSInteger)_index { NSInteger _count = [_datasource count]; if (_count > 0) { if (_count > 1) { if (_index == 0) { return CellStyle_Top; } if (_index == _count - 1) { return CellStyle_Bottom; } return CellStyle_Middle; } return CellStyle_Single; } return CellStyle_None; } // Customize the appearance of table view cells. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease]; [cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator]; cell.selectionStyle = UITableViewCellSelectionStyleNone; } TableCellBGView *bgView = [[TableCellBGView alloc] init]; bgView.theCellStyle = [self checkCellStyleWith:mMenus Index:indexPath.row]; [cell setBackgroundView:bgView]; [bgView release]; [cell setBackgroundColor:[UIColor redColor]]; [cell.textLabel setBackgroundColor:[UIColor clearColor]]; cell.textLabel.text = [mMenus objectAtIndex:indexPath.row]; [cell.detailTextLabel setBackgroundColor:[UIColor clearColor]]; cell.detailTextLabel.text = @"detailTextLabel"; return cell; } /* // Override to support conditional editing of the table view. - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath { // Return NO if you do not want the specified item to be editable. return YES; } */ /* // Override to support editing the table view. - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath { if (editingStyle == UITableViewCellEditingStyleDelete) { // Delete the row from the data source [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES]; } else if (editingStyle == UITableViewCellEditingStyleInsert) { // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view } } */ /* // Override to support rearranging the table view. - (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath { } */ /* // Override to support conditional rearranging of the table view. - (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath { // Return NO if you do not want the item to be re-orderable. return YES; } */ #pragma mark - #pragma mark Table view delegate - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { // Navigation logic may go here. Create and push another view controller. NSString *path = [[[FileManagerController documentPath] stringByAppendingPathComponent:@"menu"] stringByAppendingPathComponent:[mMenus objectAtIndex:indexPath.row]]; MenuPagingViewController *menuScrollViewController = [[MenuPagingViewController alloc] initWithPath:path tabTitle:nil navigationTitle:nil]; [self.navigationController pushViewController:menuScrollViewController animated:YES]; [menuScrollViewController release]; } #pragma mark - #pragma mark Memory management - (void)didReceiveMemoryWarning { // Releases the view if it doesn't have a superview. [super didReceiveMemoryWarning]; // Relinquish ownership any cached data, images, etc that aren't in use. } - (void)viewDidUnload { // Relinquish ownership of anything that can be recreated in viewDidLoad or on demand. // For example: self.myOutlet = nil; } @end