Something like
Class tableViewCellClass = BGUIBusinessCellForDisplay.class;
tableViewCellClass * cell = (tableViewCellClass *)tableView.visibleCells[0];
That gets compile error.
Typedefs are as close as you can get:
typedef BGUIBusinessCellForDisplay tableViewCellClass;
Which somewhat allows you to do what you want, but the overall question I have is what are you trying to accomplish?
[BGUIBusinessCellForDisplay class], which is an object, doesn't exist until later, at run time. However, there is almost certainly a way to accomplish your goal, so please explain what it is.