I have a custom class, derived from UIView, called Element. In Element I set up some IBOutlets to handle some UIImageViews I have in my XIB.
My ViewController adds the Element object to a larger view where the Element moves around. And I added an Object with class Element in IB, and connected the Outlets up through that. But in my Element class, I can't set any variables for an Outlet, nor can I get any variables, for it will output (null). Am I linking everything up wrong? It'd be really nice to get this to work right.
Edit: Basically it's like the Outlet linking doesn't actually link, so I'm trying to get/set blank objects.