我试图在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我想要实现的是让每个单元格显示由图像分隔的正确数量的标签。 例如:
CELL1:
Airport1 Image Airport2 Image Airport3 >
CELL2:
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
所以我需要以编程方式在每个标签之间以uiimage形式制作uilabels !! 而且我被困了...... 我没有多少声誉来附上我想要完成的最终结果的图像。