Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am currently receiving a string like this:

@"Sam|26,Hannah|22,Adam|30,Carlie|32,Jan|54"

And am splitting it to show in the:

cell.textLabel.text and cell.detailTextLabel.text like this:

- (void)viewDidLoad {
    [super viewDidLoad];

    testArray = [[NSArray alloc] init];
    NSString *testString = [[NSString alloc] initWithFormat:@"Sam|26,Hannah|22,Adam|30,Carlie|32,Jan|54,Steve|56,Matty|24,Bill|30,Rob|30,Jason|33,Mark|22,Stuart|54,Kevin|30"];
    testArray = [testString componentsSeparatedByString:@","];

    dict = [NSMutableDictionary dictionary];
    for (NSString *s in testArray) {

        testArray2 = [s componentsSeparatedByString:@"|"];
        [dict setObject:[testArray2 objectAtIndex:1] forKey:[testArray2 objectAtIndex:0]];
    }

    [testArray retain];
    [testArray2 retain];
    [dict retain];
}


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


// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return [[dict allKeys] count];
}


// 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:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
    }

    // Configure the cell.
    if (testArray.count >indexPath.row) {

        cell.textLabel.text = [[dict allKeys] objectAtIndex:[indexPath row]];
        cell.detailTextLabel.text = [dict objectForKey:cell.textLabel.text];

    }

    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

//  [self.tableView setDelegate:self];
//  [self.tableView setDataSource:self];

    return cell;
}

I am now wanting to create a custom TableViewCell to show more data. I will now be receiving a string like this:

@"Sam|26|Developer,Hannah|22|Team Leader,Adam|30|Director,Carlie|32|PA,Jan|54|Cleaner"

My question is: Can I (and how) use the same method as above to separate the string more than once using the "|" separator?

I want to be able to have 3 labels on the tableview.

Thanks

Sam

share|improve this question

2 Answers

up vote 44 down vote accepted

The following line...

testArray2 = [s componentsSeparatedByString:@"|"];

will cause the array to now contain 3 items, instead of 2..... no need to split again!

share|improve this answer
great thanks! just need to figure out how to create and show the UITableViewCell with 3 labels... – Sam Parrish Jun 10 '11 at 9:33
You can either subclass UITableViewCell and do everything manually OR you can use one of the preset table view cell styles and use the content view to add an extra label. The apple guide details it all.... – Simon Lee Jun 10 '11 at 9:37
Check out the 'Customizing Cells' part in 'A closer look at table view cells' section – Simon Lee Jun 10 '11 at 9:38
I have created the custom tableviewcell and used the same code, but when i configure the cell, what do i put for the third label? – Sam Parrish Jun 10 '11 at 11:02

do like this.

NSString *testString = [[NSString alloc] initWithFormat:@"Sam|26,Hannah|22,Adam|30,Carlie|32,Jan|54,Steve|56,Matty|24,Bill|30,Rob|30,Jason|33,Mark|22,Stuart|54,Kevin|30"];
    NSArray *testArray = [testString componentsSeparatedByString:@","];
    NSLog(@"%@",testArray);
    for(int i=0;i<[testArray count];i++){
        NSString *str=[testArray objectAtIndex:i];
    NSArray *aa=[str componentsSeparatedByString:@"|"];
    NSLog(@"%@",aa);
    }

No need of retain the array.

share|improve this answer
You have pretty much repeated the original code?! – Simon Lee Jun 10 '11 at 9:39
Why I have written the code is In his code he has written the retain statement.No need of it. – Tendulkar Jun 10 '11 at 9:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.