分层子菜单 - ios?

时间:2013-04-27 13:03:00

标签: iphone

如何使用xcode4.5故事板在ios中填充表格中的产品和类别数组。我正在使用singleView项目,请您告诉我步骤。 我发现了一些代码,但是他们使用.xib文件而且我不知道如何在我的项目中添加.xib文件。它需要.xib文件还是可以在没有.xib文件的情况下完成?

示例:

icecreame

    strawbwry  10
    vanila     29

   strawbwry-cake  10
   vanila -cake    29
   pineApple -cake    29
   pineApple -cake    29

饼-2

   strawbwry-cake  10
    vanila -cake    29
    pineApple -cake    29
    pineApple -cake    29

2 个答案:

答案 0 :(得分:0)

试试这个:https://github.com/TheAKDev/iOS-Tree-Component 这是如何从UITableView

制作下拉表的示例

答案 1 :(得分:0)

使用分段的Tableview。

使用

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 3; //Will return 3 sections (=categories)
}

每个类别和

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    if(section==0){ //Icecream
        return 2; //You will have 2 products for ice cream
    }else if(section==1){
        return 4; //You will have 4 products for cake.
    }
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

这样做:

if(indexPath.section==0){
    //Icecream
    //Create your cell and return it.
}else if(indexPath.section==1){
    //Cake
    //Again, create your instance of UITableViewCell and return it.
}