So assume there's a class which contains:
int someData[EXTREMELY_LARGE_CONSTANT];
What's the simplest way to bind arbitrary integers from this array to textfields in Interface Builder? Can I somehow read/write someData[x] through a KVC method on the class, or do I have to make a textfield subclass or something similar?