views:

37

answers:

1

Why can't I use "List" as class name of a subclass of UITableViewController?

+2  A: 

Because there's a List class already. You shouldn't use it (in fact I'm not sure you can on the iPhone because its interface requires @defs to work), but it's there. It's an old class, inheriting from Object, that provides a mutable array of configurable capacity.

Graham Lee
Cool. Real answer from heavy experience. I'll report this to Apple's bug reporter.
Eonil