Dare I suggest using a macro?
#define TEST( _name, _method ) \
if([elementName isEqualToString:@ _name] ) \
[character _method:currentElementText];
TEST( "companyName", setCorporationName );
TEST( "setCorporationID", setCorporationID );
TEST( "name", setName );
....
I think the else part is not necessary, but a solution for that could also be added into the macro...