Possible Duplicate:
Alternative to switch statement in objective C

I have json data from an url which I display in the table cell using a switch statement. Since I have only 6 cells, I had used a switch statement but I am curious to know if there is any other method in place of switch statement to do so.

switch(indexPath.row)
    {
        case 0 :
            cell.textLabel.text = [NSString stringWithFormat:@"%@ %@",[dictionary valueForKey:@"firstname"],
                                   [dictionary valueForKey:@"lastname"]];
            break;

        case 1:
            cell.textLabel.text = [NSString stringWithFormat:@"%@ : %@",@"Address",[dictionary valueForKey:@"address"]];
            break;

        case 2:
            cell.textLabel.text = [NSString stringWithFormat:@"%@ : %@",@"Age",[dictionary valueForKey:@"age"]];
            break;

        case 3:
            cell.textLabel.text = [NSString stringWithFormat:@"%@ : %@",@"Occupation",[dictionary valueForKey:@"occupation"]];
            break;

        case 4:
            cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
            cell.textLabel.text = [NSString stringWithFormat:@"%@ : %@",@"Rating",[rate valueForKey:@"average"]];
            break;

        case 5: 
            cell.textLabel.text = [NSString stringWithFormat:@"%@ : %@",@"Total Rating",[rate valueForKey:@"totalRatings"]];
            break;
            }
link|improve this question

can you provide an example? – Jason T Featheringham Nov 12 '11 at 5:15
I have added the code. Can you please guide me – iDev Nov 12 '11 at 5:23
Because each of your switch statement cases use different logic (especially case 4), there is no absolutely simple solution to this. – Jason T Featheringham Nov 12 '11 at 5:28
stackoverflow.com/questions/8090251/… . I have tried to answer a similar problem. Perhaps it will help you. – MadhavanRP Nov 12 '11 at 5:41
1  
this is exactly the use case for the switch statement! – ennuikiller Nov 12 '11 at 5:48
show 1 more comment
feedback

closed as exact duplicate by Bavarious, Jacques Cousteau, jrturton, George Stocker, BalusC Nov 13 '11 at 6:01

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

Here's a way to completely overengineer the problem, but you may find some useful nuggets in there which will help you with your specific problem:

typedef enum MONTableViewCellID {
    MONTableViewCellID_Name = 0,
    MONTableViewCellID_Address,
    MONTableViewCellID_Age,
    MONTableViewCellID_Occupation,
    MONTableViewCellID_Rating,
    MONTableViewCellID_TotalRating
} MONTableViewCellID;

@interface MONTableViewStuff : NSObject
{
@private
    NSDictionary * dictionary;
    NSDictionary * rate;
    UITableViewCell * cell;
    NSIndexPath * indexPath;
}
@end

@implementation MONTableViewStuff

- (UITableViewCellAccessoryType)tableViewAccessoryTypeForRow:(NSUInteger)row
{
    if (MONTableViewCellID_Rating == row) {
        return UITableViewCellAccessoryDisclosureIndicator;
    }
    return UITableViewCellAccessoryNone;
}

- (NSString *)lhsTextForRow:(NSUInteger)row
{
    switch (row) {
        case MONTableViewCellID_Name :
            return [dictionary objectForKey:@"firstname"];
        case MONTableViewCellID_Address :
            return @"Address";
        case MONTableViewCellID_Age :
            return @"Age";
        case MONTableViewCellID_Occupation :
            return @"Occupation";
        case MONTableViewCellID_Rating :
            return @"Rating";
        case MONTableViewCellID_TotalRating :
            return @"Total Rating";
        default : {
            assert(0 && "invalid row");
            return @"";
        }
    }
}

- (NSString *)rhsTextForRow:(NSUInteger)row
{
    switch (row) {
        case MONTableViewCellID_Name :
            return [dictionary objectForKey:@"lastname"];
        case MONTableViewCellID_Address :
            return [dictionary objectForKey:@"address"];
        case MONTableViewCellID_Age :
            return [dictionary objectForKey:@"age"];
        case MONTableViewCellID_Occupation :
            return [dictionary objectForKey:@"occupation"];
        case MONTableViewCellID_Rating :
            return [rate objectForKey:@"average"];
        case MONTableViewCellID_TotalRating :
            return [rate objectForKey:@"totalRatings"];
        default : {
            assert(0 && "invalid row");
            return @"";
        }
    }
}

- (NSString *)separatorForRow:(NSUInteger)row
{
    switch (row) {
        case MONTableViewCellID_Name :
            return @" ";
        case MONTableViewCellID_Address :
        case MONTableViewCellID_Age :
        case MONTableViewCellID_Occupation :
        case MONTableViewCellID_Rating :
        case MONTableViewCellID_TotalRating :
            return @" : ";
        default : {
            assert(0 && "invalid row");
            return @"";
        }
    }
}


- (NSString *)textLabelTextForRow:(NSUInteger)row
{
    return [NSString stringWithFormat:@"%@%@%@", [self lhsTextForRow:row], [self separatorForRow:row], [self rhsTextForRow:row]];
}

- (void)updateTextLabel
{
    cell.textLabel.text = [self textLabelTextForRow:indexPath.row];
    cell.accessoryType = [self tableViewAccessoryTypeForRow:indexPath.row];
}

@end
link|improve this answer
1  
Love it. Needs more singleton ;) – jrturton Nov 12 '11 at 6:37
@jrturton =) oh, yes! the singleton answer's in the mail ;) – Justin Nov 12 '11 at 6:40
1  
Out of curiosity why do you use NSUInteger in your method signatures? Would MONTableViewCellID not be a little more self documenting? – Paul.s Nov 12 '11 at 11:50
@Paul.s 1) because i knocked out the illustrations (in both answers) quickly, and without much thought. as well, neither contain error checking. 2) i agree, it would. +1 – Justin Nov 12 '11 at 12:37
feedback

The thing you could do would be to make some kind of data objet containing the information you need to display in your stringWithFormat method.

And then make a NSDictionary that key value pair those object with the indexes...

But is all that work worth it in this particular case?
I doubt it.

link|improve this answer
feedback

Another overengineered option that you may be able to steal some nuggets from is the object based approach:

MONTableViewStuff.h

typedef enum MONTableViewCellID {
    MONTableViewCellID_Name = 0,
    MONTableViewCellID_Address,
    MONTableViewCellID_Age,
    MONTableViewCellID_Occupation,
    MONTableViewCellID_Rating,
    MONTableViewCellID_TotalRating
} MONTableViewCellID;

@interface MONTableViewStuff : NSObject

@property (nonatomic, copy, readonly) NSDictionary * dictionary;
@property (nonatomic, copy, readonly) NSDictionary * rate;

@end

MONTableViewStuff.m

@implementation MONTableViewStuff

@synthesize dictionary;
@synthesize rate;

- (id)init
{
    self = [super init];
    if (0 != self) {
        /* create an array of presenters ordered by MONTableViewCellID */
        presenters =
          [NSArray arrayWithObjects:
             [[NamePresenter new] autorelease],
             [[AddressPresenter new] autorelease],
             [[AgePresenter new] autorelease],
             [[OccupationPresenter new] autorelease],
             [[RatingPresenter new] autorelease],
             [[TotalRatingPresenter new] autorelease],
             nil
         ];
    }
    return self;
}

- (void)updateTableViewCell
{
    NSObject<MONUITableViewCellPresenter>* presenter = [presenters objectAtIndex:indexPath.row];
    [presenter updateUITableViewCell:cell tableViewStuff:self];
}

@end

Where the presenters' interface looked like so:

@protocol MONUITableViewCellPresenter < NSObject >
@required
- (void)updateUITableViewCell:(UITableViewCell *)cell tableViewStuff:(MONTableViewStuff *)tableViewStuff;
@end

// our base presenter which handles the cells
@interface DefaultPresenter : NSObject

/** @return UITableViewCellAccessoryNone */
- (UITableViewCellAccessoryType)cellAccessoryTypeForTableViewStuff:(MONTableViewStuff *)tableViewStuff;

- (void)updateUITableViewCell:(UITableViewCell *)cell tableViewStuff:(MONTableViewStuff *)tableViewStuff;

@end

// required overrides
@protocol DefaultPresenterSubclass <MONUITableViewCellPresenter>
@required
- (NSString *)cellTextForTableViewStuff:(MONTableViewStuff *)tableViewStuff;
@end

// our specializations
@interface NamePresenter : DefaultPresenter <DefaultPresenterSubclass>
@end

@interface AddressPresenter : DefaultPresenter <DefaultPresenterSubclass>
@end

@interface AgePresenter : DefaultPresenter <DefaultPresenterSubclass>
@end

@interface OccupationPresenter : DefaultPresenter <DefaultPresenterSubclass>
@end

@interface RatingPresenter : DefaultPresenter <DefaultPresenterSubclass>
@end

@interface TotalRatingPresenter : DefaultPresenter <DefaultPresenterSubclass>
@end

And their implementations looked like so:

@implementation DefaultPresenter

- (UITableViewCellAccessoryType)cellAccessoryTypeForTableViewStuff:(MONTableViewStuff *)tableViewStuff
{
#pragma unused (tableViewStuff)
    return UITableViewCellAccessoryNone;
}

- (NSString *)cellTextForTableViewStuff:(MONTableViewStuff *)tableViewStuff
{
#pragma unused (tableViewStuff)
    assert(0 && "specialization required");
    return 0;
}

- (void)updateUITableViewCell:(UITableViewCell *)cell tableViewStuff:(MONTableViewStuff *)tableViewStuff
{
    cell.accessoryType = [self cellAccessoryTypeForTableViewStuff:tableViewStuff];
    cell.textLabel.text = [self cellTextForTableViewStuff:tableViewStuff];
}

@end

@implementation NamePresenter

- (NSString *)cellTextForTableViewStuff:(MONTableViewStuff *)tableViewStuff
{
    return [NSString stringWithFormat:@"%@ %@",[tableViewStuff.dictionary valueForKey:@"firstname"], [tableViewStuff.dictionary valueForKey:@"lastname"]];
}

@end

@implementation AddressPresenter

- (NSString *)cellTextForTableViewStuff:(MONTableViewStuff *)tableViewStuff
{
    return [NSString stringWithFormat:@"%@ : %@",@"Address",[tableViewStuff.dictionary valueForKey:@"address"]];
}

@end

@implementation AgePresenter

- (NSString *)cellTextForTableViewStuff:(MONTableViewStuff *)tableViewStuff
{
    return [NSString stringWithFormat:@"%@ : %@",@"Age",[tableViewStuff.dictionary valueForKey:@"age"]];;
}

@end

@implementation OccupationPresenter

- (NSString *)cellTextForTableViewStuff:(MONTableViewStuff *)tableViewStuff
{
    return [NSString stringWithFormat:@"%@ : %@",@"Occupation",[tableViewStuff.dictionary valueForKey:@"occupation"]];
}

@end

@implementation RatingPresenter

+ (UITableViewCellAccessoryType)cellAccessoryType
{
    return UITableViewCellAccessoryDisclosureIndicator;
}

- (NSString *)cellTextForTableViewStuff:(MONTableViewStuff *)tableViewStuff
{
    return [NSString stringWithFormat:@"%@ : %@",@"Rating",[tableViewStuff.rate valueForKey:@"average"]];
}

@end

@implementation TotalRatingPresenter

- (NSString *)cellTextForTableViewStuff:(MONTableViewStuff *)tableViewStuff
{
    return [NSString stringWithFormat:@"%@ : %@",@"Total Rating",[tableViewStuff.rate valueForKey:@"totalRatings"]];
}

@end
link|improve this answer
feedback

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