-1

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

例子:

雪糕

    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
4

2 回答 2

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.
}
于 2013-04-29T13:26:48.407 回答
0

试试这个:https ://github.com/TheAKDev/iOS-Tree-Component 这是如何从 UITableView 制作下拉表的示例

于 2013-04-27T14:01:40.253 回答