作为iOS 新手 这个东西我捣鼓了一天,主要是没耐心。静下心来其实一会就能摆平。
我总结的经验,宁可精心学一个小时,也别浮躁学1天。
对新手来说主要是各种函数不熟,查询还不好查;
二级菜单网上说得不多,wo
下面来说一下这个二级菜单;
需求是这样的:
1 菜单只有二级。
2 如果有子菜单点一下打开,如果没有,则实现相应的操作;
我们来实现他(界面有点丑,但主要是功能,界面很简单自己设计一下就行):
个人想法是这样的:
首先建立一个cell的类,用于存放cell中的内容 ,继承自uitableviewcell;
TableCell.h
#import <UIKit/UIKit.h>
//tablecell的类
@interface TableCell : UITableViewCell
@property (nonatomic,retain) UILabel * Name;
@property (nonatomic,retain) UILabel * Comments;
@property (nonatomic,strong) NSArray *ChildArray;//存放子菜单
@property (nonatomic,assign) BOOL Open;//表示子菜单是否打开
@end
TableCell.m
#import "TableCell.h"
@implementation TableCell
-(id)init
{
if(self = [super init])
{
_Name = [[UILabel alloc] init];
_Name.frame= CGRectMake(0, 0, 50, 30);
[self.contentView addSubview:_Name];//将控件插入uitablviewecell
_Comments = [[UILabel alloc]init];
_Comments.frame = CGRectMake(60, 0, 50, 30);
[self.contentView addSubview:_Comments];//将控件插入uitablviewecell
_Open=false;//默认子控件是关闭的
}
return self;
}
@end
在.storyboard 中拖一个uiviewtable的控件;并且与设置属性 就是下面的TableView 并建立关联
或许我只是贴出代码来并不那么容易理解;
下面我说一下大体的思路吧;
当选中cell的时候看看这个cell有没有子菜单,如果没有很简单直接打开就行了;
如果有那么我们先将这些子菜单想办法添加到掌管父菜单的数组中,然后生成一个位置数组(为了在tableview中调用
insertRowsAtIndexPaths: withRowAnimation:
这个函数进行插入操作并且带有动画);
删除操作相同的意思先从控制父菜单的数组中删除,然后同样生成位置数组调用函数删除;
大体就是这样;主要是这两个函数来操作:
-(NSArray *) insertOperation:(TableCell *)item;//插入视图处理函数
-(NSArray *) deleteOperation:(TableCell *) item;//删除视图处理函数
好了来写:
工程中没有其他的类了,下面就是自动建好的.......Controller.h了
#import <UIKit/UIKit.h>
@class TableCell;
@interface TPViewController : UIViewController<UITableViewDelegate,UITableViewDataSource>//实现uitableview的两个代理
@property (weak, nonatomic) IBOutlet UITableView *TableView;//UItableiew与.storyboard中拖的uitableview关联
@property (nonatomic,strong) NSMutableArray * TableArry;//要添加的进uitableview的数组,里面存放的是tablecell
@property (nonatomic,strong) NSMutableArray * InsertArry;//中间处理过程数组,用于插入子视图
@property (nonatomic,strong) NSMutableArray * DeleteArry;//中间处理过程数组,用于删除子视图
-(NSArray *) insertOperation:(TableCell *)item;//插入视图处理函数
-(NSArray *) deleteOperation:(TableCell *) item;//删除视图处理函数
@end
.m文件;
#import "TPViewController.h"
#import "TableCell.h"
#import "TableCellArray.h"
@interface TPViewController ()
@end
@implementation TPViewController
- (void)viewDidLoad
{
[super viewDidLoad];
_TableArry = [[NSMutableArray alloc]init];
TableCell *cell0 = [[TableCell alloc]init];
cell0.Name.text = @"子菜单";
cell0.Comments.text = @"子菜单";
cell0.ChildArray=nil;
NSMutableArray *array = [[NSMutableArray alloc] init];
[array addObject:cell0];
TableCell *cell = [[TableCell alloc]init];
cell.Name.text=@"菜单1";
cell.Comments.text = @"注释1";
cell.ChildArray = nil;
[_TableArry addObject:cell];
TableCell *cell1 = [[TableCell alloc]init];
cell1.Name.text =@"菜单2";
cell1.Comments.text = @"注释2";
cell1.ChildArray = array;
[_TableArry addObject:cell1];
//以上是模拟数据
_TableView.delegate=self;
_TableView.dataSource=self;
_InsertArry = [[NSMutableArray alloc]init];
_DeleteArry = [[NSMutableArray alloc]init];
// Do any additional setup after loading the view, typically from a nib.
}
//返回tableview中cell的个数
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return _TableArry.count;
}
//设置 cell的样式
-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [[TableCell alloc]init];
if(indexPath.row<_TableArry.count)
{
cell = [_TableArry objectAtIndex:indexPath.row ];
}
return cell;
}
//返回cell的高度
-(CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 30.0f;
}