show/hide this revision's text 3 oops...fixed category @interface/@implementation syntax

In this case, I'm not sure if you can easily refactor the class to introduce polymorphism as Bradley suggests, since it's a Cocoa-native class. Instead, the Objective-C way to do it is to use a class category to add an elementNameCode method to NSSting:

   typedef enum { 
       companyName = 0,
       companyID,  
       ...,
       Unknown
    } ElementCode;

    @interface NSStringElementNameCodeAdditions NSString (NSString)
    ElementNameCodeAdditions)
    - (ElementCode)elementNameCode; 
    @end

    @implementation NSStringElementNameCodeAdditions
    NSString (ElementNameCodeAdditions)
    - (ElementCode)elementNameCode {
        if([self compare:@"companyName"]==0) {
            return companyName;
        } else if([self compare:@"companyID"]==0) {
    		return companyID;
    	} ... {

    	}

    	return Unknown;
    }
    @end

In your code, you could now use a switch on [elementName elementNameCode] (and gain the associated compiler warnings if you forget to test for one of the enum members etc.).

As Bradley points out, this may not be worth it if the logic is only used in one place.

show/hide this revision's text 2 added 36 characters in body

In this case, I'm not sure if you can easily refactor the class to introduce polymorphism as Bradley suggests, since it's a Cocoa-native class. Instead, the Objective-C way to do it is to use a class category to add an elementNameCode method to NSSting:

   typedef enum { 
       companyName = 0,
       companyID,  
       ...,
       Unknown
    } ElementCode;

    @interface NSStringElementNameCodeAdditions (NSString)
    - (ElementCode)elementNameCode; 
    @end

    @implementation NSStringElementNameCodeAdditions
    - (ElementCode)elementNameCode {
        if([self compare:@"companyName"]==0) {
            return companyName;
        } else if([self compare:@"companyID"]==0) {
    		return companyID;
    	} ... {

    	}

    	return Unknown;
    }
    @end

In your code, you could now use a switch statement on [elementName elementNameCode] (and gain the associated compiler warnings if you forget to test for one of the enum members etc.).

As Bradley points out, this may not be worth it if the logic is only used in one place.

show/hide this revision's text 1

In this case, I'm not sure if you can easily refactor the class to introduce polymorphism as Bradley suggests, since it's a Cocoa-native class. Instead, the Objective-C way to do it is to use a class category to add an elementNameCode method to NSSting:

   typedef enum { 
       companyName = 0,
       companyID,  
       ...,
       Unknown
    } ElementCode;

    @interface NSStringElementNameCodeAdditions (NSString)
    - (ElementCode)elementNameCode; 
    @end

    @implementation NSStringElementNameCodeAdditions
    - (ElementCode)elementNameCode {
        if([self compare:@"companyName"]==0) {
            return companyName;
        } else if([self compare:@"companyID"]==0) {
    		return companyID;
    	} ... {

    	}

    	return Unknown;
    }
    @end

In your code, you could now use a switch statement (and gain the associated compiler warnings if you forget to test for one of the enum members etc.).

As Bradley points out, this may not be worth it if the logic is only used in one place.