0

我正在尝试在 UItableviewCell 中实现 Label-Image-Label 等的样式,每行可能有 3 个或 4 个或 5 个标签,它们之间有图像。标签的文本作为数组/字典存储在 plist 中,键是 airprort1 airport2 等。

我坚持以编程方式设置单元格、标签和图像。

尝试使用情节提要,但无法弄清楚逻辑。

到目前为止,这是我的代码:

#import "ShowLabelTVC.h"

@interface ShowLabelTVC ()

@end

@implementation ShowLabelTVC
     @synthesize flights;

- (void)viewDidLoad {
    [super viewDidLoad];
    NSString *myListPath = [[NSBundle mainBundle] pathForResource:@"flight" ofType:@"plist"];
    flights = [[NSMutableArray alloc]initWithContentsOfFile:myListPath];
    NSLog(@"%@", flights);

}

#pragma mark - Table view data source

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

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return flights.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"TagCell";
    TagCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    if (cell == nil) {
        cell = [[TagCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }
    // Configure the cell...
    //for (int i = 0; i < flights.count; i++)
    //{
    //  cell.sec1Label.text = [[flights objectAtIndex:indexPath.row] valueForKey:@"airport1"];
    //  if(i != flights.count - 1)
    //  {

    //  }
    //}
    return cell;
}

@end

Cameron 我想要完成的是让每个单元格显示由图像分隔的正确数量的标签。例如:

单元格1:

Airport1 Image Airport2 Image Airport3 >

单元格2:

Airport1 Image Airport2 Image Airport 3 Image Airport4 >

等等。

数据来自带有字典的 plist 数组,如下所示

Root:
    Flight1
         Airport1:"kwi"
         Airport2:"cai"
         Airport3:"kwi"
    Flight2
         Airport1:"kwi"
         Airport2:"bkk"
         Airport3:"mnl"
         Airport4:"bkk"
         Airport5:"kwi"
     Flight3
         Airport1:"kwi"
         Airport2:"jed"
         Airport3:"kwi

所以我需要以编程方式制作uilabels,在每个标签之间水平放置一个uiimage!在这里我被困住了..我没有太多的声誉来附上我想要完成的最终结果的图像..

4

0 回答 0