我在下一个segue中填充tableview时遇到问题。基本上我在一个组合字符串中发送所有字符串,然后用它填充数组。从那个数组我填充表。问题是这只出现在第一个单元格中。我想为每个有逗号的条目打破下一个单元格。这是第一个ViewControler.h的代码
@interface ViewController : UIViewController {
IBOutlet UITableView *myTableView;
NSMutableArray *locationArray;
}
@property (nonatomic, retain) IBOutlet UITableView *myTableView;
@property (nonatomic, retain) NSMutableArray *locationArray;
- (void) populateLocationArray;
@end
这是ViewController.m
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:YES];
NSLog(@"Row Selected %i",indexPath.row);
if (indexPath.section==0) {
[self performSegueWithIdentifier:@"first" sender:nil];
}
}
- (void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
NSLog(@"PrepareForSegueCalled");
LocationItems *destination = [segue destinationViewController];
//If statement for city pressed
destination.titleOfView = @"Boston";
NSArray *myStrings = [[NSArray alloc] initWithObjects:@"first", @"second", @"third", @"fourth", @"fifth", nil];
destination.arrayToBePopulatedString = [myStrings componentsJoinedByString:@" "];
// destination.arrayToBePopulatedString = [myStrings componentsJoinedByString:@"|"];
// [destination.populationArray addObjectsFromArray:myStrings];
}
名为LocationItems的控制器是我希望填充的表的视图。这是LocationItems.h
@interface LocationItems : UIViewController
{
IBOutlet UITableView *locationTableView;
NSString *titleOfView;
NSString *arrayToBePopulatedString;
NSMutableArray *populationArray;
NSMutableArray *bostonArray;
}
- (void) populateArray;
@property (nonatomic, retain) IBOutlet UITableView *locationTableView;
@property (strong, nonatomic) NSString *titleOfView;
@property (strong, nonatomic) NSString *arrayToBePopulatedString;
@property (strong, nonatomic) NSMutableArray *populationArray;
@property (nonatomic, retain) NSMutableArray *bostonArray;
@end
最后是LocationItems.m
- (void)viewDidLoad
{
[super viewDidLoad];
bostonArray = [[NSMutableArray alloc] init];
[self populateArray];
//********************************************************
//If string = boston load some array containing the cities.
// Do any additional setup after loading the view from its nib.
}
- (void) populateArray {
[bostonArray addObject:arrayToBePopulatedString];
//[bostonArray addObject:populationArray];
//[bostonArray addObject:@"Boston"];
}
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
[[cell textLabel] setNumberOfLines:1];
//[[cell textLabel] setLineBreakMode:
}
// Configure the cell.
[cell.textLabel setText:[bostonArray objectAtIndex:indexPath.row]];
return cell;
}
// Customize the number of sections in the table view.
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [bostonArray.self count];
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:YES];
NSLog(@"Row Selected %i",indexPath.row);
}
我提前为这么长的问题道歉,但我认为有必要充分解释我的问题。我只想让每个单元格都有不同的单词(第一,第二,第三等)。任何帮助将不胜感激。
谢谢!
答案 0 :(得分:1)
我不确定我理解你的意思:
我在一个组合字符串中发送所有字符串然后填充 有它的数组。
你的意思是你希望拆分包含所有子串的字符串并从中创建一个数组吗?
根据我从代码中获得的内容,您将获取连接字符串,其中所有值都以空格分隔,并将其存储为数组的第一个元素:
destination.arrayToBePopulatedString = [myStrings componentsJoinedByString:@" "];
...
[bostonArray addObject:arrayToBePopulatedString];
这只是在数组中添加完整的字符串。
如果要将连接的字符串拆分回数组,则应该使用类似
的内容bostonArray = [[destination.arrayToBePopulatedString componentsSeparatedByString: @" "] retain];
然后您不再需要在viewDidLoad
中分配数组。
答案 1 :(得分:0)
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [bostonArray.self count]; // typo here? [self.bostonArray count]
}
答案 2 :(得分:0)
最简单的解决方法是将bostonArray addObject
更改为bostonArray addObjectsFromArray
。
使用addObject会将整个数组添加到bostonArray的第一个元素中。