1

实际上我正在尝试在 UITableView 的不同行中实现不同的图像。通过创建一个新的 UITableViewCell 我尝试了很多来实现它但我失败了。我需要在每一行中设置两个图像和一个标签。如何做呢?而且我必须使用导航控制器在下一页中获取图像...请指定我的代码并解释。否则我无法理解。感谢您提供的信息丰富的答案...

 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 5;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        static NSString *CellIdentifier = @"Cell";

        sampletable1 *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        if (cell == nil) {

            NSArray* views = [[NSBundle mainBundle] loadNibNamed:@"sampletable1" owner:nil options:nil];
            for (UIView *view in views) {
                if([view isKindOfClass:[UITableViewCell class]])
                {
                    cell = (sampletable1*)view;


                }
            }
        }
4

1 回答 1

0

这是你需要的。子类化 UITableViewCell。显示的示例中有两个图像。您可以使用相同的技术再添加一个

于 2012-09-19T17:40:41.517 回答